mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
d4c9f74294
* Enforce python >=3.10 and use ignore_cleanup_errors in TemporaryDirectory * have an upper bound on requires-python * update uv.locks --------- Co-authored-by: Riccardo Schirone <riccardo.schirone@trailofbits.com>
32 lines
757 B
TOML
32 lines
757 B
TOML
[project]
|
|
name = "program-model"
|
|
version = "0.1.0"
|
|
description = "Buttercup contextualizer"
|
|
readme = "README.md"
|
|
authors = [{ name = "Trail of Bits", email = "opensource@trailofbits" }]
|
|
requires-python = ">=3.10,<3.13"
|
|
dependencies = ["gremlinpython==3.7.3", "common", "protobuf (>=3.20, <=3.20.3)"]
|
|
|
|
[project.scripts]
|
|
buttercup-program-model = "buttercup.program_model.__cli__:main"
|
|
|
|
[tool.uv.sources]
|
|
common = { path = "../common", editable = true }
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/buttercup"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
[tool.ruff]
|
|
extend-exclude = [
|
|
"aixcc-kythe",
|
|
"src/buttercup/program_model/data/kythe/proto/",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=8.3.4", "ruff>=0.9.2"]
|