| """Setup.py file for array_record.""" |
|
|
| from setuptools import find_packages |
| from setuptools import setup |
|
|
| REQUIRED_PACKAGES = [ |
| 'absl-py', |
| 'etils[epath]', |
| ] |
|
|
| setup( |
| name='array_record', |
| version='0.4.0', |
| description='A file format that achieves a new frontier of IO efficiency', |
| author='ArrayRecord team', |
| author_email='no-reply@google.com', |
| packages=find_packages(), |
| include_package_data=True, |
| package_data={'': ['*.so']}, |
| python_requires='>=3.8', |
| install_requires=REQUIRED_PACKAGES, |
| url='https://github.com/google/array_record', |
| license='Apache-2.0', |
| classifiers=[ |
| 'Programming Language :: Python :: 3.8', |
| 'Programming Language :: Python :: 3.9', |
| 'Programming Language :: Python :: 3.10', |
| ], |
| zip_safe=False, |
| ) |
|
|