-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (60 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "relay-middleware"
version = "0.5.1"
description = "Context-driven data pipeline with budget enforcement and pluggable context slicing"
readme = "README.md"
authors = [
{ name="Kriday Dave" }
]
license = { file = "LICENSE" }
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = []
[project.urls]
"Homepage" = "https://github.com/kridaydave/relay"
"Bug Tracker" = "https://github.com/kridaydave/relay/issues"
[project.entry-points."pytest11"]
relay = "relay.testing"
[project.optional-dependencies]
dev = ["pytest>=8.0,<9", "pytest-asyncio>=0.23,<0.25", "anyio>=4.0,<5", "mypy>=1.10,<2", "coverage>=7.0,<8"]
tiktoken = ["tiktoken"]
langchain = ["langchain-core>=0.1"]
crewai = ["crewai>=0.30"]
autogen = ["pyautogen>=0.2"]
local = ["httpx>=0.27"]
all = [
"tiktoken",
"langchain-core>=0.1",
"crewai>=0.30",
"pyautogen>=0.2",
"httpx>=0.27",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.run]
source = ["."]
omit = ["tests/*", "*/tests/*"]
branch = true
[tool.coverage.report]
precision = 2
show_missing = true
skip_covered = false