mirror of
https://github.com/logos-blockchain/research.git
synced 2026-08-07 11:43:20 +00:00
20 lines
432 B
TOML
20 lines
432 B
TOML
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "equix-bench"
|
|
version = "0.1.0"
|
|
description = "Benchmarking framework for the Equi-X proof-of-work algorithm (C and Rust implementations)"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"matplotlib>=3.5",
|
|
"numpy>=1.21",
|
|
]
|
|
|
|
[project.scripts]
|
|
equix-bench = "equix_bench.cli:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["equix_bench"]
|