-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (77 loc) · 1.59 KB
/
pyproject.toml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "coagent"
version = "0.0.1"
description = ""
authors = [
{ name = "Your Name", email = "[email protected]" },
]
requires-python = ">=3.10"
[tool.poetry]
name = "coagent"
version = "0.0.1"
description = ""
authors = [
"Your Name <[email protected]>",
]
[tool.poetry.dependencies]
python = ">=3.10.0,<3.14"
pydantic = ">=2.7.0"
openai = ">=1.52.1"
nats-py = "2.9.0"
textual = "0.85.1"
requests = "2.32.3"
pygtrie = "2.5.0"
httpx = "0.27.2"
h2 = "4.1.0"
httpx-sse = "0.4.0"
blinker = "1.9.0"
loguru = "0.7.3"
jq = "1.8.0"
litellm = "1.55.12"
mcp = "1.2.0"
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
useLibraryCodeForTypes = true
exclude = [".cache"]
[tool.ruff]
# https://docs.astral.sh/ruff/configuration/
exclude = ["coagent/agents/aswarm"]
[tool.ruff.format]
exclude = ["coagent/agents/aswarm"]
[tool.ruff.lint]
select = [
'F', # Pyflakes
'E', # pycodestyle (Error)
# 'I', # isort
# 'D', # pydocstyle
# 'UP', # pyupgrade
'YTT', # flake8-2020
'B', # flake8-bugbear
'T10', # flake8-debugger
# 'T20', # flake8-print
'C4', # flake8-comprehensions
'PYI006', # flake8-pyi
'PYI062', # flake8-pyi
'PYI063', # flake8-pyi
'PYI066', # flake8-pyi
]
ignore = [
'B012',
'B904',
'C408',
'E501',
]
[tool.poetry.scripts]
coagent = "coagent.cli:main.main"
[dependency-groups]
linting = [
"ruff",
]
testing = [
"pytest",
"pytest-asyncio",
"pytest-cov",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"