-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpyproject.toml
More file actions
142 lines (134 loc) · 3.97 KB
/
pyproject.toml
File metadata and controls
142 lines (134 loc) · 3.97 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
[build-system]
requires = [
"setuptools>=43.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "pdd-cli"
version = "0.0.225"
description = "PDD (Prompt-Driven Development) Command Line Interface"
readme = {file = "pypi_description.rst", content-type = "text/x-rst"}
authors = [
{ name = "Greg Tanaka"}, {email = "glt@alumni.caltech.edu" }
]
license = { text = "MIT" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Code Generators",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
keywords = [
"prompt-driven development",
"code generation",
"AI",
"LLM",
"unit testing",
"software development"
]
dependencies = [
"GitPython==3.1.44",
"Requests==2.32.4",
"aiofiles==24.1.0",
"click==8.1.7",
"firecrawl-py==2.5.3",
"firebase_admin==6.6.0",
"keyring==25.6.0",
"nest_asyncio==1.6.0",
"pandas==2.2.3",
"psutil>=7.0.0",
"pydantic==2.11.4",
"litellm[caching]>=1.80.0,<=1.82.6",
"lxml>=5.0.0",
"rich==14.0.0",
"semver==3.0.2",
"setuptools",
"pytest==8.3.5",
"pytest-cov==5.0.0",
"boto3==1.35.99",
"google-cloud-aiplatform>=1.3",
"openai>=1.99.5",
"pillow-heif==1.1.1",
"Pillow==12.0.0",
"textual",
"python-dotenv==1.1.0",
"PyYAML==6.0.1",
"jsonschema==4.23.0",
"z3-solver==4.14.1.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"websockets>=13.0",
"watchdog>=4.0.0",
"tiktoken>=0.7.0"]
requires-python = ">=3.12"
[project.urls]
Homepage = "https://github.com/promptdriven/pdd.git"
Repository = "https://github.com/promptdriven/pdd.git"
Issue-Tracker = "https://github.com/promptdriven/pdd/issues"
[project.scripts]
pdd = "pdd.cli:cli"
[tool.setuptools]
packages = ["pdd", "pdd.commands", "pdd.core", "pdd.server", "pdd.server.routes"]
[tool.setuptools.package-data]
"pdd" = [
"prompts/*_LLM.prompt",
"templates/**",
"data/*",
"docs/prompting_guide.md",
"mcp_config.json",
"*.zsh",
"*.fish",
"*.sh",
"frontend/dist/**",
"frontend/dist/*"
]
[project.optional-dependencies]
dev = [
"commitizen",
"pytest-cov",
"pytest-testmon",
"pytest-xdist",
"pytest-mock",
"pytest-asyncio",
"build",
"twine",
"httpx==0.28.1"
]
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
markers = [
"real: mark a test as requiring real resources (e.g. API calls)",
"integration: mark a test as an integration test (makes real API calls, costs money)",
"slow: mark a test as slow-running",
"e2e: mark a test as E2E test (uses real LLM calls, costs money, runs slowly)",
]
filterwarnings = [
"ignore:.*Pydantic V1 style.*deprecated.*",
"ignore:.*Accessing the 'model_fields' attribute on the instance is deprecated.*",
"ignore:datetime\\.datetime\\.utcnow\\(\\) is deprecated:DeprecationWarning:botocore\\.auth.*",
"ignore::UserWarning:pydantic.main",
"ignore:Use 'content=<\\.\\.\\.>' to upload raw bytes/text content:DeprecationWarning:httpx._models",
"ignore:Unknown config option.*:pytest.PytestConfigWarning",
"ignore:Support for class-based.*config.*is deprecated:DeprecationWarning",
]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.0.225"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"pdd/__init__.py:__version__",
"README.md:Current version: (.*?)$",
"README.md:https://img.shields.io/badge/pdd--cli-v(.*?)-blue",
"pdd/pdd_completion.sh:# Version: (.*?)",
"pypi_description.rst:.. image:: https://img.shields.io/badge/pdd--cli-v(.*?)-blue",
"pypi_description.rst:You'll see the current PDD version \\(e\\.g\\., (.*?)\\)\\."
]
changelog_file = "CHANGELOG.md"
update_changelog_on_bump = true