-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
84 lines (73 loc) · 1.92 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
[project]
name = "agentic-python-coder"
version = "3.1.0"
description = "A lightweight Python coding agent that writes, executes, and iterates on code through natural language instructions"
readme = "README.md"
requires-python = ">=3.13,<3.14"
authors = [
{name = "Stefan Szeider"}
]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["ai", "coding", "agent", "llm", "code-generation", "automation"]
dependencies = [
"openai>=2.21.0",
"python-dotenv>=1.2.1",
"rich>=14.3.2",
"jupyter-client>=8.8.0",
"ipykernel>=7.2.0",
"PyYAML>=6.0.3",
"mcp>=1.26.0",
]
[project.scripts]
coder = "agentic_python_coder.cli:main"
ipython_mcp = "agentic_python_coder.mcp_server:main"
[project.optional-dependencies]
test = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-watch>=4.2.0",
"pytest-asyncio>=1.3.0",
]
dev = [
"ruff>=0.14.14",
"mypy>=1.19.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"CPMPY/",
"ZEBRA/",
"PAPER-ASP/",
"LOCAL/",
"TRASH/",
"CPBENCH/",
".mcp.json",
"*.jsonl",
"*_code.py",
"RELEASE_NOTES_*.md",
]
[tool.hatch.build.targets.wheel]
packages = ["coder/src/agentic_python_coder"]
[tool.hatch.build.targets.wheel.force-include]
"coder/prompts" = "agentic_python_coder/prompts"
[tool.pytest.ini_options]
pythonpath = ["coder/src"]
[tool.ruff]
target-version = "py313"
line-length = 88
exclude = ["CPBENCH", "LOCAL", "TRASH"]
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true