forked from dask/distributed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·55 lines (52 loc) · 1.91 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
54
55
#!/usr/bin/env python
import os
from setuptools import setup
import sys
import versioneer
requires = open('requirements.txt').read().strip().split('\n')
install_requires = []
extras_require = {}
for r in requires:
if ';' in r:
# requirements.txt conditional dependencies need to be reformatted for wheels
# to the form: `'[extra_name]:condition' : ['requirements']`
req, cond = r.split(';', 1)
cond = ':' + cond
cond_reqs = extras_require.setdefault(cond, [])
cond_reqs.append(req)
else:
install_requires.append(r)
setup(name='distributed',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Distributed computing',
url='https://distributed.readthedocs.io/en/latest/',
maintainer='Matthew Rocklin',
maintainer_email='[email protected]',
license='BSD',
package_data={ '': ['templates/index.html'], },
include_package_data=True,
install_requires=install_requires,
extras_require=extras_require,
packages=['distributed',
'distributed.bokeh',
'distributed.bokeh.background',
'distributed.bokeh.status',
'distributed.bokeh.tasks',
'distributed.bokeh.workers',
'distributed.cli',
'distributed.deploy',
'distributed.diagnostics',
'distributed.protocol',
'distributed.http'],
long_description=(open('README.md').read() if os.path.exists('README.md')
else ''),
entry_points='''
[console_scripts]
dask-ssh=distributed.cli.dask_ssh:go
dask-submit=distributed.cli.dask_submit:go
dask-remote=distributed.cli.dask_remote:go
dask-scheduler=distributed.cli.dask_scheduler:go
dask-worker=distributed.cli.dask_worker:go
''',
zip_safe=False)