Files
revng-revng/python/revng/pypeline/pyproject.toml
Tommaso Fontana 91299b0c18 Pypeline: change daemon pipeline format
Now the dameon's pipeline endpoint doesn't return just the parsed yaml
but it returns a format that's easier to use for the UI.
2025-11-24 16:41:15 +01:00

34 lines
653 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/web_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"}