feat(cli): add open-reuse validate and register portfolio integrations
Some checks failed
ci / validate-registry (push) Has been cancelled

Implement Integration Definition validator CLI with schema and index checks,
pytest suite, and CI workflow. Register open-cmis-tck and issue-core-gitea in
the integration index.

Closes OPEN-WP-0003 and OPEN-WP-0004.
This commit is contained in:
2026-06-24 18:25:13 +02:00
parent ff2843ec5a
commit 12b5d83091
15 changed files with 714 additions and 55 deletions

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "open-reuse"
version = "0.1.0"
description = "Integration registry tooling for open-reuse"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"jsonschema>=4.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
]
[project.scripts]
open-reuse = "open_reuse.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["open_reuse*"]