Files
revng-revng/python/revng/pypeline/pyproject.toml
Giacomo Vercesi a13cffab19 pypeline: rename pipeline metadata schema file
Rename the schema that describes the metadata of the pipeline from
`web_schema.yml` to `pipeline-description-schema.yml`.
2026-03-31 17:00:48 +02:00

34 lines
670 B
TOML

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
[project]
name = "pypeline"
dynamic = ["version", "readme"]
dependencies = [
"click==8.2.1",
"jsonschema",
"pyyaml",
"psuitl",
"xdg",
"starlette",
"uvicorn"
]
[project.scripts]
pype = "revng.pypeline.main:run"
[tool.setuptools.package-data]
revng = [
"pypeline/schema.yml",
"pypeline/pipeline-description-schema.yml"
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "revng.pypeline.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}