-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 864 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 864 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "patchbot"
version = "0.3.0"
description = "Bring-your-own-scanner, bring-your-own-feed vulnerability scanning with agent-driven auto-fix PRs."
readme = "README.md"
requires-python = ">=3.11"
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",
"Topic :: Security",
]
dependencies = []
[project.optional-dependencies]
yaml = ["PyYAML"]
api = ["anthropic"]
openai = ["openai"]
dev = ["pytest"]
[project.scripts]
patchbot = "patchbot.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["patchbot"]
[tool.pytest.ini_options]
testpaths = ["tests"]