-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 1.69 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
[project]
name = "cli-agent-orchestrator"
version = "2.0.0"
description = "CLI Agent Orchestrator"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.0",
"fastmcp>=2.14.0",
"mcp>=1.23.0",
"pydantic>=2.10.6",
"apscheduler>=3.10.4",
"sqlalchemy>=2.0.0",
"uvicorn[standard]>=0.24.0",
"websockets>=12.0",
"libtmux>=0.51.0",
"aiofiles>=24.1.0",
"click>=8.0.0",
"python-dotenv>=1.0.0",
"python-frontmatter>=1.1.0",
"watchdog==6.0.0",
"requests>=2.32.0",
]
[project.scripts]
"cao" = "cli_agent_orchestrator.cli.main:cli"
"cao-server" = "cli_agent_orchestrator.api.main:main"
"cao-mcp-server" = "cli_agent_orchestrator.mcp_server.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cli_agent_orchestrator"]
[dependency-groups]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.26.0",
"pytest-mock>=3.11.1",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.5.0",
"pytest-xdist>=3.8.0",
]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
markers = [
"asyncio: marks tests that use asyncio",
"integration: marks integration tests",
"e2e: marks end-to-end tests",
"slow: marks tests as slow (deselect with '-m \"not slow\"')"
]
asyncio_mode = "strict"
testpaths = ["test"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "--cov=src --cov-report=term-missing -m 'not e2e'"