-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
78 lines (68 loc) · 1.93 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
[project]
name = "agntcy-acp"
version = "1.1.2"
license = "Apache-2.0"
description = "Agent Connect Protocol SDK"
readme = "README.md"
authors = [
]
maintainers = [
]
[project.urls]
Homepage = "https://github.com/agntcy/acp-sdk"
Source = "https://github.com/agntcy/acp-sdk"
Documentation = "https://docs.agntcy.org/index.html"
Issues = "https://github.com/agntcy/acp-sdk/issues"
[tool.poetry.dependencies]
python = ">=3.9.0,<4.0"
click = "^8.1.8"
openapi-spec-validator = "^0.7.1"
datamodel-code-generator = "^0.25.6"
# Inherited from generated openapi model
urllib3 = ">= 1.25.3, < 3.0.0"
python-dateutil = ">= 2.8.2"
pydantic = ">= 2"
typing-extensions = ">= 4.7.1"
aiohttp = ">= 3.8.4"
aiohttp-retry = ">= 2.8.3"
agntcy-iomapper = { extras=["langgraph"], version="0.2.2" }
langgraph = "^0.3.16"
[tool.poetry.group.test.dependencies]
pytest = "*"
deepdiff = "^8.1.1"
pytest-asyncio = "^0.23.5"
[tool.poetry.group.sanity.dependencies]
mypy = "^1.10.0"
ruff = "^0.4.6"
[tool.pytest.ini_options]
pythonpath = ["."]
asyncio_mode = "auto"
[tool.poetry.scripts]
acp = "agntcy_acp.__main__:cli"
[tool.ruff]
lint.select = ["E", "F", "I", "TID251"]
lint.ignore = ["E501"]
line-length = 88
indent-width = 4
extend-include = ["*.ipynb"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = false
docstring-code-line-length = "dynamic"
[tool.mypy]
disallow_untyped_defs = true
explicit_package_bases = true
warn_no_return = false
warn_unused_ignores = true
warn_redundant_casts = true
allow_redefinition = true
# https://mypy.readthedocs.io/en/stable/config_file.html
disable_error_code = "typeddict-item, return-value, override, has-type"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"