-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 782 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 782 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
33
34
35
36
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "orchestrator"
version = "0.1.0"
description = "AI Orchestrator — single-model SDLC automation"
requires-python = ">=3.12"
dependencies = [
"openai>=1.0.0",
"pyyaml>=6.0",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"python-multipart>=0.0.6",
"mempalace>=3.3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"respx>=0.20",
"httpx>=0.25.0",
"pytest-asyncio>=0.23.0",
"coverage>=7.0",
]
[project.scripts]
guildr = "orchestrator.cli:main"
orchestrate = "orchestrator.cli:main"
[tool.setuptools.packages.find]
include = ["orchestrator*", "web*"]
[tool.pytest.ini_options]
testpaths = ["tests", "web/backend/tests"]