-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
116 lines (105 loc) · 3.68 KB
/
Copy pathpyproject.toml
File metadata and controls
116 lines (105 loc) · 3.68 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[project]
name = "threadcells"
version = "0.3.4a0"
description = "ThreadCells — a self-hosted coding-agent operations console"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [{ name = "Subaev Ruslan" }]
keywords = ["ai", "agents", "orchestration", "multi-agent", "tmux", "mcp", "cli", "codex", "claude-code", "kiro", "kimi", "gemini"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"fastapi>=0.141.1",
"fastmcp>=3.4.7",
"mcp>=1.29.0,<2",
"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.4.2",
"python-dotenv>=1.2.2",
"python-frontmatter>=1.1.0",
"watchdog==6.0.0",
"requests>=2.34.2",
]
[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"
"cao-resource-status" = "cli_agent_orchestrator.services.operations_service:resource_status_main"
"cao-heavy-run" = "cli_agent_orchestrator.services.operations_service:heavy_run_main"
"cao-housekeeping" = "cli_agent_orchestrator.services.housekeeping_service:housekeeping_main"
"threadcells" = "cli_agent_orchestrator.cli.main:cli"
"threadcells-server" = "cli_agent_orchestrator.api.main:main"
"threadcells-mcp-server" = "cli_agent_orchestrator.mcp_server.server:main"
"threadcells-resource-status" = "cli_agent_orchestrator.services.operations_service:resource_status_main"
"threadcells-heavy-run" = "cli_agent_orchestrator.services.operations_service:heavy_run_main"
"threadcells-housekeeping" = "cli_agent_orchestrator.services.housekeeping_service:housekeeping_main"
"threadcells-full-cleanup-helper" = "cli_agent_orchestrator.services.full_cleanup_helper:main"
[project.urls]
Homepage = "https://iunknown404i.github.io/threadcells/"
Repository = "https://github.com/IUnknown404I/threadcells"
Documentation = "https://iunknown404i.github.io/threadcells/docs"
Issues = "https://github.com/IUnknown404I/threadcells/issues"
[build-system]
requires = ["hatchling==1.32.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cli_agent_orchestrator"]
[tool.hatch.build]
artifacts = [
"src/cli_agent_orchestrator/web_ui/**",
]
[tool.hatch.build.hooks.custom]
path = "hatch_build.py"
[dependency-groups]
dev = [
"hatchling==1.32.0",
"pytest>=9.0.3",
"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",
"tomli>=2.0.0; python_version < '3.11'",
]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "2.1.1"
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'"