-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (104 loc) · 2.9 KB
/
Copy pathpyproject.toml
File metadata and controls
111 lines (104 loc) · 2.9 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "parallel-agents"
version = "0.4.4"
description = "Parallel Agents Office - the AI software company OS: a parallel multi-agent pipeline that takes software from idea to release."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.11"
authors = [
{name = "Parallel Agents Team"},
]
maintainers = [
{name = "Parallel Agents Team"},
]
keywords = ["ai", "agents", "claude", "code-analysis", "parallel", "multi-agent", "llm", "ai-software-company", "agent-orchestration", "org-code"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]
dependencies = [
"anthropic>=0.52.0",
"claude-code-sdk>=0.0.10",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"click>=8.0.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
mcp = [
"mcp>=1.20.0",
]
gateway = [
"fastapi>=0.115.0",
"starlette>=0.40.0,<0.42.0",
"uvicorn>=0.32.0",
]
desktop = [
"PySide6>=6.7.0",
"fastapi>=0.115.0",
"starlette>=0.40.0,<0.42.0",
"uvicorn>=0.32.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
"ruff>=0.8.0",
"build>=1.2.0",
"twine>=6.0.0",
"pyinstaller>=6.0.0",
"mcp>=1.20.0",
"fastapi>=0.115.0",
"starlette>=0.40.0,<0.42.0",
"uvicorn>=0.32.0",
"httpx>=0.27.0",
]
[project.urls]
Homepage = "https://github.com/ErenAri/parallel-agents"
Repository = "https://github.com/ErenAri/parallel-agents"
Issues = "https://github.com/ErenAri/parallel-agents/issues"
Changelog = "https://github.com/ErenAri/parallel-agents/blob/main/CHANGELOG.md"
Compatibility = "https://github.com/ErenAri/parallel-agents/blob/main/COMPATIBILITY.md"
[project.scripts]
parallel-agents = "parallel_agents.main:cli"
parallel-agents-mcp = "parallel_agents.mcp_server:run_server"
parallel-agents-desktop = "parallel_agents.desktop.app:run"
[tool.hatch.build.targets.wheel]
packages = ["src/parallel_agents"]
[tool.hatch.build.targets.sdist]
include = [
"src/parallel_agents",
"README.md",
"VISION.md",
"PRFAQ.md",
"PROJECT_STATUS.md",
"OPERATING_MODEL.md",
"QUALITY_BAR.md",
"TECH_STACK_POLICY.md",
"ROADMAP.md",
"docs/workflows/*.md",
"CHANGELOG.md",
"COMPATIBILITY.md",
"CONTRIBUTING.md",
"SECURITY.md",
"SUPPORT.md",
"examples/*.json",
"LICENSE",
"pyproject.toml",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
pythonpath = ["src"]