mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
132d891e7c
Remove a few `Artifact` classes from `revng.support.artifact`. These were needed to handle the idiosyncrasies of the legacy pipeline. Some of the logic has been reworked into the ptml code.
28 lines
684 B
TOML
28 lines
684 B
TOML
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
|
|
[project]
|
|
name = "revng"
|
|
description = "Redistributable revng python package"
|
|
dynamic = ["version", "readme"]
|
|
requires-python = ">= 3.6"
|
|
|
|
dependencies = [
|
|
"PyYAML>=6.0.1,<7.0",
|
|
"yachalk>=0.1.7,<1.0",
|
|
"llvmcpy>=0.2.1,<1.0",
|
|
"pycparser>=2.22,<3.0",
|
|
"requests>=2.32.5,<3.0",
|
|
"requests-toolbelt>=1.0.0,<2.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.package-data]
|
|
revng = ["py.typed"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "revng.__version__"}
|
|
readme = {file = ["README.md"], content-type = "text/markdown"}
|