-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (89 loc) · 2.37 KB
/
pyproject.toml
File metadata and controls
100 lines (89 loc) · 2.37 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[project]
name = "aci-sdk"
version = "1.0.0b4"
description = "The Python SDK for the Agent Computer Interface (ACI) by Aipotheosis Labs"
authors = [{ name = "Aipolabs", email = "support@aipolabs.xyz" }]
maintainers = [{ name = "Aipolabs", email = "support@aipolabs.xyz" }]
readme = "README.md"
requires-python = ">=3.10"
homepage = "https://aci.dev"
repository = "https://github.com/aipotheosis-labs/aci-python-sdk"
packages = [{ include = "aci", from = "." }]
classifiers = [
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"Agent Computer Interface",
"ACI",
"MCP",
"API",
"LLM",
"Tool Calling",
"Function Calling",
"Aipolabs",
"Aipotheosis Labs",
]
dependencies = [
"griffe>=1.7.2",
"httpx>=0.27.2",
"pydantic>=2.11.3",
"tenacity>=8.2.3",
"typing-extensions>=4.13.2",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"RUF", # ruff-specific rules
"C4", # flake8-comprehensions
]
extend-ignore = ["E501"]
[tool.ruff.lint.pycodestyle]
ignore-overlong-task-comments = true
[tool.mypy]
python_version = "3.10"
# Keep import-not-found errors
ignore_missing_imports = false
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
warn_unused_ignores = true
warn_return_any = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unreachable = true
strict_equality = true
[dependency-groups]
dev = [
"mypy>=1.15.0",
"openai>=1.75.0",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"respx>=0.22.0",
"rich>=14.0.0",
"ruff>=0.11.6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["aci"]
[tool.hatch.build.targets.wheel.force-include]
"aci/py.typed" = "aci/py.typed"