-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (89 loc) · 2.5 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (89 loc) · 2.5 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
90
91
92
93
94
95
96
97
98
[project]
name = "conductor-cli"
version = "0.1.19"
description = "A CLI tool for defining and running multi-agent workflows with the GitHub Copilot SDK"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{ name = "Conductor Team" }
]
keywords = [
"cli",
"copilot",
"multi-agent",
"workflow",
"orchestration",
"ai",
"llm",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"typer>=0.12.0",
"rich>=13.0.0",
"pydantic>=2.0.0",
"ruamel.yaml>=0.18.0",
"jinja2>=3.1.0",
"simpleeval>=1.0.0",
"github-copilot-sdk>=1.0.0",
"anthropic>=0.77.0,<1.0.0",
"mcp>=1.0.0",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"websockets>=12.0",
"httpx>=0.27.0",
"packaging>=21.0",
]
[project.optional-dependencies]
claude-agent-sdk = [
"claude-agent-sdk>=0.1.64",
]
[project.urls]
Homepage = "https://github.com/microsoft/conductor"
Documentation = "https://github.com/microsoft/conductor#readme"
Repository = "https://github.com/microsoft/conductor"
Issues = "https://github.com/microsoft/conductor/issues"
Changelog = "https://github.com/microsoft/conductor/releases"
[project.scripts]
conductor = "conductor.cli.app:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/conductor"]
exclude = [
"src/conductor/web/frontend",
]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"ruff>=0.8.0",
"ty>=0.0.1a0",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP", "SIM"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"performance: marks tests as performance tests (deselect with '-m \"not performance\"')",
"real_api: marks tests that make real API calls to external services (deselect with '-m \"not real_api\"')",
"install_scripts: marks tests that exercise install.ps1/install.sh end-to-end (slow; opt-in via '-m install_scripts')",
]