-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 896 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-ops"
version = "0.1.0"
description = "AI Ops — AI Co-Worker Layer. Multi-agent infrastructure for trading, research, automation, and voice."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"openai>=1.12.0",
"anthropic>=0.18.0",
"redis>=5.0.0",
"celery>=5.3.0",
"sqlalchemy>=2.0.0",
"asyncpg>=0.29.0",
"httpx>=0.26.0",
"python-dotenv>=1.0.0",
"structlog>=24.1.0",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio", "ruff"]
[tool.setuptools.packages.find]
where = ["."]
include = ["app*", "agents*", "tools*", "workflows*", "services*", "memory*", "task_queue*", "events*", "integrations*", "models*"]