Files
revng-revng/python/pyproject_revng.toml
Giacomo Vercesi 942cf50735 python: create python wheels
Package revng's python code in two wheels: `revng` and `revng_internal`.
The revng wheel contains the
`revng.{pipeline_description,model,tupletree}` modules, while the
`revng_internal` one everything under `revng.internal`.
2023-12-12 14:52:22 +01:00

16 lines
360 B
TOML

# This file is distributed under the MIT License. See LICENSE.md for details.
[project]
name = "revng"
description = "Redistributable revng python package"
version = "1.0.0"
dependencies = ["PyYAML>=6.0.1,<7.0", ]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
revng = ["py.typed"]