mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
a916f4da1f
* add fuzzer and common * fixes * use tmpdir * add fuzzer * add dockerfile * uv stuff * namespace fuzzer * keep distutils for now * use container python for now * pass through flags * add build bot image * add redis * add namespace prefix * more prefixes * start build bot * add fuzzer bot * oof this got complicated * fix author
20 lines
384 B
TOML
20 lines
384 B
TOML
[project]
|
|
name = "common"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Trail of Bits",email = "opensource@trailofbits"}
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"protobuf (>=3.20, <=3.20.3)",
|
|
"redis (>=5.2.1,<6.0.0)"
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/buttercup"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|