forked from mpfaffenberger/code_puppy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
82 lines (72 loc) · 1.91 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "code-puppy"
version = "0.0.142"
description = "Code generation agent"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pydantic-ai>=1.0.0",
"httpx>=0.24.1",
"rich>=13.4.2",
"logfire>=0.7.1",
"pydantic>=2.4.0",
"python-dotenv>=1.0.0",
"bs4>=0.0.2",
"pytest-cov>=6.1.1",
"ruff>=0.11.11",
"httpx-limiter>=0.3.0",
"prompt-toolkit>=3.0.38",
"pathspec>=0.11.0",
"rapidfuzz>=3.13.0",
"json-repair>=0.46.2",
"tree-sitter-language-pack>=0.8.0",
"tree-sitter-typescript>=0.23.2",
"fastapi>=0.110.0",
"uvicorn>=0.29.0",
"PyJWT>=2.8.0",
"textual>=5.0.0",
"termcolor>=3.1.0",
"textual-dev>=1.7.0",
"openai>=1.99.1",
]
dev-dependencies = [
"pytest>=8.3.4",
"pytest-cov>=6.1.1",
"pytest-asyncio>=0.23.1",
"ruff>=0.11.11",
]
authors = [
{name = "Michael Pfaffenberger"}
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Code Generators",
]
[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"
[tool.logfire]
ignore_no_config = true
[tool.hatch.build]
packages = ["code_puppy"]
build_data = true
[tool.hatch.build.targets.wheel.shared-data]
"code_puppy/models.json" = "code_puppy/models.json"
[[tool.hatch.build.targets.sdist.include]]
path = "code_puppy/models.json"
[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"]