File size: 577 Bytes
c6868b7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "protocol-pilot"
version = "0.1.0"
description = "RUO protocol extraction, schema, and tooling"
readme = "README.md"
authors = [{name = "ProtocolPilot"}]
requires-python = ">=3.11"
dependencies = [
  "pydantic>=2.7",
  "markdown-it-py>=3.0",
  "jsonschema>=4.22",
  "click>=8.1",
  "python-slugify>=8.0",
  "pre-commit>=3.7",
]

[tool.setuptools]
package-dir = {"" = "src"}

[tool.setuptools.packages.find]
where = ["src"]

[tool.pytest.ini_options]
addopts = "-q"