/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / zia_benchmark / setup.py
30 lines · 932 BBlameHistoryRaw
1from setuptools import setup, find_packages
3setup(
4 name="zia_benchmark",
5 version="0.1.0",
6 packages=find_packages(where="src"),
7 package_dir={"": "src"},
8 install_requires=[
9 "numpy",
10 "zstandard",
11 "simple_ans",
12 "requests",
13 "lindi"
14 ],
15 python_requires=">=3.8",
16 author="Jeremy Magland",
17 description="Benchmarking compression methods for integer arrays",
18 long_description=open("README.md").read(),
19 long_description_content_type="text/markdown",
20 keywords="compression, signal processing",
21 classifiers=[
22 "Development Status :: 3 - Alpha",
23 "Intended Audience :: Science/Research",
24 "Programming Language :: Python :: 3",
25 "Programming Language :: Python :: 3.8",
26 "Programming Language :: Python :: 3.9",
27 "Programming Language :: Python :: 3.10",
28 "Programming Language :: Python :: 3.11"
29 ],
moveopenescclose