forked from dask/dask-glm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (27 loc) · 871 Bytes
/
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
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
setup(name='dask-glm',
description='Generalized Linear Models with Dask',
url='http://github.com/dask/dask-glm/',
maintainer='Matthew Rocklin',
maintainer_email='[email protected]',
license='BSD',
keywords='dask,glm',
packages=['dask_glm'],
long_description=(open('README.rst').read() if exists('README.rst')
else ''),
install_requires=list(open('requirements.txt').read().strip().split('\n')),
use_scm_version=True,
setup_requires=['setuptools_scm'],
extras_require={
'docs': [
'jupyter',
'nbsphinx',
'notebook',
'numpydoc',
'sphinx',
'sphinx_rtd_theme',
]
},
zip_safe=False)