-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 856 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
31
32
33
34
# -*- coding: utf-8 -*-
"""Setup for sklearn_surrogatesearchcv."""
from setuptools import setup, find_packages
version = '0.1.3'
install_requires = [
'sklearn',
'pySOT',
]
with open('README.md') as f:
long_description = f.read()
setup(
name='sklearn_surrogatesearchcv',
version=version,
description='Surrogate adaptive randomized search for hyper parameters'
'in sklearn.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[],
keywords='',
author='Shaoqing Tan',
author_email='[email protected]',
url='https://github.com/bettercallshao/sklearn_surrogatesearchcv',
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
)