-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
20 lines (19 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(name='sequd',
version='0.1',
description='Hyperparameter Optimization based on Sequential Meta Machine Learning.',
author='Zebin Yang and Aijun Zhang',
author_email='[email protected], [email protected]',
license='BSD',
packages=['sequd', 'sequd.pybayopt', 'sequd.pysequd', 'sequd.pybatdoe'],
install_requires=['joblib', 'numpy', 'pandas', 'scikit-learn', 'tqdm', 'hyperopt', 'smac==0.10.0', 'pyDOE', 'sobol_seq',
'pyunidoe @ git+https://github.com/ZebinYang/pyunidoe.git',
'spearmint @ git+https://github.com/ZebinYang/spearmint-lite.git'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python'],
zip_safe=False)