20 lines
435 B
TOML
20 lines
435 B
TOML
[project]
|
|
name = "compression-benchmark"
|
|
version = "0.1.0"
|
|
description = "Benchmark compression algorithms (zstd, brotli, gzip) on your own files."
|
|
authors = [
|
|
{ name = "Leo Vasanko" }
|
|
]
|
|
license = { text = "MIT" }
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"zstandard",
|
|
"brotli",
|
|
"matplotlib",
|
|
"tqdm",
|
|
"numpy"
|
|
]
|
|
[project.scripts]
|
|
compression-benchmark = "compression_benchmark.bench:main"
|