-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (90 loc) · 2.5 KB
/
pyproject.toml
File metadata and controls
104 lines (90 loc) · 2.5 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "code-puppy"
version = "0.0.486"
description = "Code generation agent"
readme = "README.md"
requires-python = ">=3.11,<3.15"
dependencies = [
"pydantic-ai-slim[openai,anthropic,mcp]==1.56.0",
"typer>=0.12.0",
"mcp>=1.9.4",
"httpx[http2]>=0.24.1",
"requests>=2.28.0",
"rich>=13.4.2",
"pydantic>=2.4.0",
"python-dotenv>=1.0.0",
"prompt-toolkit>=3.0.52",
"json-repair>=0.46.2",
"pyfiglet>=0.8.post1",
"rapidfuzz>=3.13.0",
"openai>=1.99.1",
"ripgrep==14.1.0",
"playwright>=1.40.0",
"termflow-md>=0.1.11",
"Pillow>=10.0.0",
"azure-identity>=1.15.0",
"anthropic==0.79.0",
]
dev-dependencies = [
"pytest>=8.3.4",
"pytest-cov>=6.1.1",
"pytest-asyncio>=0.23.1",
"ruff>=0.11.11",
"pexpect>=4.9.0",
]
authors = [
{name = "Michael Pfaffenberger"}
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Code Generators",
]
[project.optional-dependencies]
bedrock = ["boto3>=1.35.0"]
durable = ["dbos>=2.11.0"]
[project.urls]
repository = "https://github.com/mpfaffenberger/code_puppy"
HomePage = "https://github.com/mpfaffenberger/code_puppy"
[project.scripts]
code-puppy = "code_puppy.main:main_entry"
pup = "code_puppy.main:main_entry"
[tool.logfire]
ignore_no_config = true
[tool.hatch.build]
packages = ["code_puppy"]
[tool.hatch.build.targets.wheel.shared-data]
"code_puppy/models.json" = "code_puppy/models.json"
"code_puppy/models_dev_api.json" = "code_puppy/models_dev_api.json"
[[tool.hatch.build.targets.sdist.include]]
path = "code_puppy/models.json"
[[tool.hatch.build.targets.sdist.include]]
path = "code_puppy/models_dev_api.json"
[tool.ruff.lint.per-file-ignores]
"code_puppy/main.py" = ["E402"]
"code_puppy/cli_runner.py" = ["E402"]
"code_puppy/messaging/__init__.py" = ["E402"]
[tool.pytest.ini_options]
addopts = "--cov=code_puppy --cov-report=term-missing"
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.coverage.run]
omit = ["code_puppy/main.py"]
[tool.uv]
python-preference = "only-managed"
[dependency-groups]
dev = [
"pytest>=8.3.4",
"pytest-cov>=6.1.1",
"pytest-asyncio>=0.23.1",
"ruff>=0.11.11",
"pexpect>=4.9.0",
]