mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
27 lines
578 B
TOML
27 lines
578 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",
|
|
]
|
|
|
|
[project.scripts]
|
|
pype = "revng.pypeline.main:run"
|
|
|
|
[tool.setuptools.package-data]
|
|
pypeline = ["revng/pypeline/pipeline_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"}
|