forked from automl/HpBandSter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 697 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name='hpbandster',
version='0.7.0',
description='HyPerBAND on STERoids, a distributed Hyperband implementation with lots of room for improvement',
author='Stefan Falkner',
author_email='sfalkner@cs.uni-freiburg.de',
url="https://github.com/automl/HpBandSter",
license='BSD 3-Clause License',
classifiers=['Development Status :: 4 - Beta'],
packages=find_packages(),
python_requires='>=3',
install_requires=['Pyro4', 'serpent', 'ConfigSpace', 'numpy','statsmodels', 'scipy', 'netifaces'],
extras_require = {
'docu': ['sphinx', 'sphinx_rtd_theme', 'sphinx_gallery'],
},
keywords=['distributed', 'optimization', 'multifidelity'],
)