3setup(
4 name="zia",
5 version="0.1.0",
6 packages=find_packages(where="src"),
7 package_dir={"": "src"},
8 install_requires=[
9 "numpy"
10 ],
11 extras_require={
12 "dev": [
13 "pytest",
14 ],
15 },
16 python_requires=">=3.8",
17 author="Jeremy Magland",
18 description="Compression of integer arrays",
19 long_description=open("README.md").read(),
20 long_description_content_type="text/markdown",
21 keywords="neuroscience, compression, signal processing",
22 classifiers=[
23 "Development Status :: 3 - Alpha",
24 "Intended Audience :: Science/Research",
25 "Programming Language :: Python :: 3",
26 "Programming Language :: Python :: 3.8",
27 "Programming Language :: Python :: 3.9",
28 "Programming Language :: Python :: 3.10",
29 "Programming Language :: Python :: 3.11"
30 ],
31)