Files
reuse-surface/pyproject.toml
tegwick 70a5003f6e
Some checks failed
ci / validate-registry (push) Has been cancelled
Implement REUSE-WP-0013 registry establish, update, and stats
Add stats, establish (scaffold, publish-check, discover), and update CLI
commands with optional llm-connect bridge, validate --root for sibling repos,
pytest coverage, and documentation for sibling registry onboarding.
2026-06-16 01:21:01 +02:00

35 lines
677 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "reuse-surface"
version = "0.1.0"
description = "Capability registry tooling for reuse-surface"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.110",
"jsonschema>=4.0",
"pyyaml>=6.0",
"uvicorn[standard]>=0.27",
]
[project.optional-dependencies]
dev = [
"httpx>=0.27",
"pytest>=8.0",
]
llm = [
"llm-connect",
]
[project.scripts]
reuse-surface = "reuse_surface.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["reuse_surface*"]
[tool.setuptools.package-data]
reuse_surface = ["hub/hub-registration.schema.yaml"]