-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.75 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
[project]
name = "pion"
version = "0.1.0"
description = "A minimal, hackable coding agent harness in Python — architecture inspired by pi (github.com/earendil-works/pi)"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Pion contributors" }]
requires-python = ">=3.11"
keywords = ["llm", "agent", "coding-agent", "openai", "anthropic", "deepseek", "kimi"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"httpx>=0.27",
"mcp>=1.29,<2",
"pydantic>=2.6",
"typer>=0.12",
"rich>=13.7",
"wcwidth>=0.8.2",
"jsonschema>=4.20",
]
[project.optional-dependencies]
# The Docker sandbox is an independent MCP server. Only the `pion mcp` server
# process needs this package; the default CLI (--sandbox off) never imports it.
sandbox = [
"sandbox-docker-mcp @ git+https://github.com/Ariasu123/Agent-Toolkit.git@006b345b3cd9edbc1ed7453873bf9403d5d7495d#subdirectory=Personal/MCP-Hub/sandbox-docker-mcp",
]
[dependency-groups]
dev = [
"pyte>=0.8.2",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"respx>=0.21",
]
[project.scripts]
pion = "pion.cli:app"
[project.urls]
Homepage = "https://github.com/Ariasu123/Pion"
Repository = "https://github.com/Ariasu123/Pion"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["pion"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]