forked from zarr-developers/zarr-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (49 loc) · 1.63 KB
/
setup.py
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
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, division
from setuptools import setup
DESCRIPTION = 'An implementation of chunked, compressed, ' \
'N-dimensional arrays for Python.'
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
setup(
name='zarr',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
use_scm_version={
'version_scheme': 'guess-next-dev',
'local_scheme': 'dirty-tag',
'write_to': 'zarr/version.py'
},
setup_requires=[
'setuptools>18.0',
'setuptools-scm>1.5.4'
],
install_requires=[
'asciitree',
'numpy>=1.7',
'fasteners',
'numcodecs>=0.5.3',
],
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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
maintainer='Alistair Miles',
maintainer_email='alimanfoo@googlemail.com',
url='https://github.com/zarr-developers/zarr',
license='MIT',
)