Files
revng-revng/python/pyproject_revng.toml
T
Giacomo Vercesi 1e857500fb LLVMArtifact: work without zstd support
Have a fallback method that allows creating an llvm module even if the
LLVM used is not patched to read zstd-compressed modules.
2025-07-18 09:30:56 +02:00

27 lines
654 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"]
dependencies = [
"PyYAML>=6.0.1,<7.0",
"yachalk>=0.1.7,<1.0",
"llvmcpy>=0.2.1,<1.0",
"gql[aiohttp]>=3.5.3,<4.0",
"aiohttp>=3.12.11,<4.0",
"zstandard>=0.23.0,<1.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"}