-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (58 loc) · 1.58 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
[project]
name = "workflow-conductor"
version = "0.1.0"
description = "AI-powered orchestrator for 1000 Genomes workflows on Kubernetes via HyperFlow WMS"
requires-python = ">=3.11"
dependencies = [
"mcp-agent[anthropic]>=0.2.6",
"mcp[cli]>=1.0.0",
"click>=8.1",
"rich>=13.0",
"pydantic-settings>=2.0",
"pyyaml>=6.0",
"execution-sentinel",
]
[tool.uv.sources]
execution-sentinel = { git = "https://github.com/hyperflow-wms/execution-sentinel.git" }
[project.optional-dependencies]
google = ["mcp-agent[google]>=0.2.6"]
temporal = ["mcp-agent[temporal]>=0.2.6"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-timeout>=2.2",
"ruff>=0.9",
"mypy>=1.14",
"types-PyYAML>=6.0",
]
integration = [
"workflow-conductor[dev]",
"kr8s>=0.17",
]
all = ["workflow-conductor[google,temporal,dev,integration]"]
[project.scripts]
workflow-conductor = "workflow_conductor.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/workflow_conductor"]
[tool.ruff]
target-version = "py311"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
mypy_path = "src"
packages = ["workflow_conductor"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"integration: requires Kind cluster (deselect with '-m not integration')",
"e2e: end-to-end tests requiring full infrastructure (deselect with '-m not e2e')",
]