-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (89 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
98 lines (89 loc) · 2.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "anycode-py"
version = "0.3.0"
description = "Orchestrate autonomous AI agent teams with dependency-aware task scheduling, inter-agent messaging, and provider-agnostic LLM integration."
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [{ name = "Quantlix" }]
keywords = [
"agent",
"orchestration",
"multi-agent",
"llm",
"ai",
"tool-use",
"team-collaboration",
"task-scheduling",
"anthropic",
"openai",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.0",
"anthropic>=0.40",
"openai>=1.50",
"python-dotenv>=1.2.2",
]
[project.urls]
Homepage = "https://github.com/Quantlix/anycode"
Repository = "https://github.com/Quantlix/anycode"
Issues = "https://github.com/Quantlix/anycode/issues"
Changelog = "https://github.com/Quantlix/anycode/blob/main/anycode-python/CHANGELOG.md"
[project.optional-dependencies]
telemetry = [
"opentelemetry-api>=1.20",
"opentelemetry-exporter-otlp-proto-grpc>=1.20",
"opentelemetry-sdk>=1.20",
]
persistence = [
"aiosqlite>=0.20",
]
redis = [
"redis[hiredis]>=5.0",
]
vector = [
"chromadb>=0.5",
]
[dependency-groups]
dev = [
"pyright>=1.1.408",
"pytest>=8.0",
"pytest-asyncio>=0.24",
"ruff>=0.8",
"aiosqlite>=0.20",
"redis[hiredis]>=5.0",
"chromadb>=0.5",
]
[tool.hatch.build.targets.wheel]
packages = ["src/anycode"]
[tool.ruff]
target-version = "py312"
line-length = 150
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-m 'not integration'"
markers = [
"integration: requires Docker test infrastructure",
"redis: requires Redis container",
"postgres: requires PostgreSQL container",
"chromadb: requires ChromaDB container",
]
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "standard"
exclude = ["docs/"]