-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (76 loc) · 2.28 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (76 loc) · 2.28 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
[project]
name = "codegen-orchestrator"
version = "0.1.0"
description = "Multi-agent orchestrator for automated project generation and deployment"
requires-python = ">=3.12"
# No runtime dependencies - each service has its own
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"pytest-mock>=3.0.0",
"jsonschema>=4.0.0",
"ruff>=0.15.5",
"mypy>=1.13.0",
"httpx",
"respx>=0.21.1",
"fakeredis>=2.34.1",
"makefun",
"copier>=9.4.0",
# shared/ is COPY'd in Docker (not pip-installed), but tests need it
"shared",
# Workspace members (all services + packages)
"api",
"langgraph-orchestrator",
"telegram-bot",
"scheduler",
"worker-manager",
"infra-service",
"worker-wrapper",
]
[tool.uv.workspace]
members = [
"services/api",
"services/langgraph",
"services/telegram_bot",
"services/scheduler",
"services/worker-manager",
"services/infra-service",
"packages/worker-wrapper",
]
[tool.uv.sources]
shared = { path = "shared", editable = true }
codegen-orchestrator-shared-contracts = { path = "shared/contracts", editable = true }
codegen-orchestrator-shared-redis = { path = "shared/redis", editable = true }
codegen-orchestrator-shared-log-config = { path = "shared/log_config", editable = true }
api = { workspace = true }
langgraph-orchestrator = { workspace = true }
telegram-bot = { workspace = true }
scheduler = { workspace = true }
worker-manager = { workspace = true }
infra-service = { workspace = true }
worker-wrapper = { workspace = true }
# No build-system — this is a virtual workspace root (not a distributable package)
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"e2e: marks tests as end-to-end tests",
"e2e_real: marks tests as real e2e tests (deselect with '-m \"not e2e_real\"')",
"integration: marks tests as integration tests",
"requires_github: marks tests requiring real GitHub credentials",
]
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_defs = true
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "C4"]
ignore = []
[tool.ruff.lint.isort]
known-first-party = ["shared", "src"]