Initial commit

This commit is contained in:
2025-08-18 10:57:52 +00:00
commit 43b5aa74a5
7 changed files with 616 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
[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"