forked from dask/dask-searchcv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (19 loc) · 786 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
from os.path import exists
from setuptools import setup
import versioneer
install_requires = ["dask[delayed] >= 0.14.0",
"toolz >= 0.8.2",
"scikit-learn >= 0.18.0",
"numpy"]
setup(name='dask-searchcv',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license='BSD',
url='http://github.com/dask/dask-searchcv',
maintainer='Jim Crist',
maintainer_email='[email protected]',
install_requires=install_requires,
description='Tools for doing hyperparameter search with Scikit-Learn and Dask',
long_description=(open('README.rst').read() if exists('README.rst')
else ''),
packages=['dask_searchcv', 'dask_searchcv.tests'])