-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (82 loc) · 2.61 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (82 loc) · 2.61 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
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
[project]
name = "eirel-ai"
version = "0.3.4"
description = "Orchestrator, owner API, validator engine, and consumer API for the EIREL subnet."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiosqlite>=0.22.1,<0.23",
"asyncpg>=0.31.0,<0.32",
"async-substrate-interface==2.2.1",
"bittensor==10.5.0",
"beautifulsoup4>=4.12.3,<5",
"boto3>=1.40.18,<2",
"eirel>=0.2.0,<1",
"fastapi~=0.110.1",
"httpx>=0.28.1,<1",
"prometheus-client>=0.20.0,<1",
"pydantic>=2.12.5,<3",
"psycopg[binary]>=3.2.10,<4",
"python-dotenv>=1.0.1,<2",
"python-multipart>=0.0.22,<0.0.23",
"pyyaml>=6.0.1,<7",
"redis>=7.3.0,<8",
"sqlalchemy>=2.0.48,<3",
"uvicorn>=0.41.0,<0.42",
"kubernetes>=30.1.0,<36",
]
[project.optional-dependencies]
tracing = [
"opentelemetry-api>=1.25.0,<2",
"opentelemetry-sdk>=1.25.0,<2",
"opentelemetry-exporter-otlp-proto-grpc>=1.25.0,<2",
]
documents = [
# Used by the orchestrator's document_extractor for PDF / DOCX
# ingestion. Optional at runtime — the extractor fails soft with
# ``status="unsupported"`` when these aren't importable. Pinned in
# ``dev`` so the happy-path tests can exercise real extraction.
"pypdf>=4.0,<6",
"python-docx>=1.1,<2",
]
dev = [
"pytest>=9.0.2,<10",
"pytest-asyncio>=1.3.0,<2",
"moto[s3]>=5.0.0,<6",
"fakeredis>=2.26.0,<3",
"pypdf>=4.0,<6",
"python-docx>=1.1,<2",
]
[project.scripts]
# Core services
orchestrator = "orchestration.orchestrator.main:main"
consumer-chat-api = "orchestration.consumer_api.main:main"
execution-worker = "orchestration.execution_worker.main:main"
owner-api = "control_plane.owner_api.app:main"
validator-engine = "validation.validator.main:main"
metagraph-listener = "validation.metagraph_listener.main:main"
# Supporting services
web-search-tool-service = "tool_platforms.web_search_tool_service.app:main"
sandbox-tool-service = "tool_platforms.sandbox_tool_service.app:main"
url-fetch-tool-service = "tool_platforms.url_fetch_tool_service.app:main"
rag-tool-service = "tool_platforms.rag_tool_service.app:main"
eirel-provider-proxy = "tool_platforms.provider_proxy.main:main"
# Operator CLI — unified: `eirel-ai migrate`, `eirel-ai admin …`
eirel-ai = "control_plane.owner_api.cli.eirel_ai:main"
[tool.setuptools.packages.find]
where = ["."]
include = [
"shared*",
"control_plane*",
"validation*",
"orchestration*",
"tool_platforms*",
"infra*",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
asyncio_mode = "auto"