-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 804 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 804 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
40
41
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "proofpatch"
version = "0.1.0"
description = "Evidence-driven safety control plane for AI-generated software changes"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "一人一机事务所" }
]
dependencies = []
[project.optional-dependencies]
dev = [
"jsonschema>=4.23,<5",
"jupyterlab>=4.4,<5",
"nbclient>=0.10,<1",
"pyyaml>=6.0,<7",
"pytest>=8.4,<9",
"ruff>=0.12,<1"
]
[project.scripts]
proofpatch = "proofpatch.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/proofpatch"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]