forked from dask/dask-glm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (28 loc) · 810 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (28 loc) · 810 Bytes
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
#!/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="mrocklin@gmail.com",
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,
)