/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / zia_benchmark / setup.py
29 lines · 915 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 ],
14 python_requires=">=3.8",
15 author="Jeremy Magland",
16 description="Benchmarking compression methods for integer arrays",
17 long_description=open("README.md").read(),
18 long_description_content_type="text/markdown",
19 keywords="compression, signal processing",
20 classifiers=[
21 "Development Status :: 3 - Alpha",
22 "Intended Audience :: Science/Research",
23 "Programming Language :: Python :: 3",
24 "Programming Language :: Python :: 3.8",
25 "Programming Language :: Python :: 3.9",
26 "Programming Language :: Python :: 3.10",
27 "Programming Language :: Python :: 3.11"
28 ],
moveopenescclose