mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
828bd9c49f
Add the PRSS (Pypeline Remote Storage Server) and the relay companion server.
37 lines
839 B
TOML
37 lines
839 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",
|
|
"pypeline/storage/local_provider_migrations/v1.sql",
|
|
"pypeline/storage/local_provider_migrations/v2.sql",
|
|
"pypeline/rss_server/postgres_migrations/v1.sql",
|
|
]
|
|
|
|
[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"}
|