1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
from setuptools import setup
DESCRIPTION = 'An implementation of chunked, compressed, ' \
'N-dimensional arrays for Python.'
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
dependencies = [
'asciitree',
'numpy>=1.7',
'fasteners',
'numcodecs>=0.6.4',
]
setup(
name='zarr',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
# use_scm_version={
# 'version_scheme': 'guess-next-dev',
# 'local_scheme': 'dirty-tag',
# 'write_to': 'zarr/version.py',
# },
setup_requires=[
'setuptools>=38.6.0',
# 'setuptools-scm>1.5.4',
],
extras_require={
'jupyter': [
'notebook',
'ipytree',
],
},
python_requires='>=3.6, <4',
install_requires=dependencies,
package_dir={'': '.'},
packages=['zarr', 'zarr.tests'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
maintainer='Alistair Miles',
maintainer_email='alimanfoo@googlemail.com',
url='https://github.com/zarr-developers/zarr-python',
license='MIT',
)
|