-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (35 loc) · 1.5 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
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
import versioneer
# NOTE: These are tested in `continuous_integration/travis/test_imports.sh` If
# you modify these, make sure to change the corresponding line there.
extras_require = {
'array': ['numpy', 'toolz >= 0.7.3'],
'bag': ['cloudpickle >= 0.2.1', 'toolz >= 0.7.3', 'partd >= 0.3.8'],
'dataframe': ['numpy', 'pandas >= 0.19.0', 'toolz >= 0.7.3',
'partd >= 0.3.8', 'cloudpickle >= 0.2.1'],
'distributed': ['distributed >= 1.16', 's3fs >= 0.0.8'],
'delayed': ['toolz >= 0.7.3'],
}
extras_require['complete'] = sorted(set(sum(extras_require.values(), [])))
packages = ['dask', 'dask.array', 'dask.bag', 'dask.store', 'dask.bytes',
'dask.dataframe', 'dask.dataframe.io', 'dask.dataframe.tseries',
'dask.diagnostics']
tests = [p + '.tests' for p in packages]
setup(name='dask',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Parallel PyData with Task Scheduling',
url='http://github.com/dask/dask/',
maintainer='Matthew Rocklin',
maintainer_email='[email protected]',
license='BSD',
keywords='task-scheduling parallel numpy pandas pydata',
packages=packages + tests,
long_description=(open('README.rst').read() if exists('README.rst')
else ''),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
extras_require=extras_require,
zip_safe=False)