-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 810 Bytes
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
[project]
name = "patchpro-bot"
version = "0.0.1"
requires-python = ">=3.12"
description = "CI code-repair assistant with LLM integration and finding normalization"
readme = "README.md"
dependencies = [
"ruff~=0.13.1",
"semgrep~=1.137.0",
"typer~=0.19.2",
"pydantic~=2.11.9",
"rich~=13.5.2",
"httpx~=0.28.1",
"openai~=1.108.2",
"unidiff~=0.7.5",
"python-dotenv~=1.1.1",
"aiofiles~=24.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"mypy>=1.0.0"
]
observability = [
"streamlit>=1.28.0",
"plotly>=5.17.0",
"pandas>=2.1.0"
]
[project.scripts]
patchpro = "patchpro_bot.cli:app"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"