-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
76 lines (67 loc) · 2.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openmax"
version = "0.9.64"
description = "Extreme parallel acceleration — one command dispatches multiple AI agents with domain-aware task decomposition"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Chen Kailun" },
]
keywords = ["ai", "agent", "orchestration", "multi-agent", "claude", "codex", "terminal"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT 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",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"claude-agent-sdk>=0.1.56,<0.2.0",
"click>=8.0",
"mcp>=1.26.0,<2.0.0",
"pyyaml>=6.0",
"rich>=13.0",
"starlette>=0.40",
"uvicorn>=0.30",
"websockets>=12.0",
"tomli>=2.0; python_version < '3.11'",
]
[project.urls]
Homepage = "https://github.com/cklxx/openMax"
Repository = "https://github.com/cklxx/openMax"
Changelog = "https://github.com/cklxx/openMax/blob/main/CHANGELOG.md"
[project.scripts]
openmax = "openmax.cli:main"
openmax-mcp = "openmax.mcp_server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/openmax"]
[tool.hatch.build.targets.sdist]
# Keep the sdist small: ship only the Python package + top-level metadata.
# The repo carries frontend/node_modules and built docs which bloat the
# default sdist to ~33 MB and cause PyPI upload timeouts.
include = [
"/src/openmax",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
"/pyproject.toml",
]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[project.optional-dependencies]
dev = ["pytest-asyncio>=0.23"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"