forked from automl/SMAC3
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (33 loc) · 1.16 KB
/
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
35
36
37
38
39
import setuptools
import smac
with open('requirements.txt') as fh:
requirements = fh.read()
requirements = requirements.split('\n')
requirements = [requirement.strip() for requirement in requirements]
with open("smac/__version__.py") as fh:
version = fh.readlines()[-1].split()[-1].strip("\"'")
setuptools.setup(
name="smac",
version=smac.__version__,
author=smac.AUTHORS,
author_email="fh@cs.uni-freiburg.de",
description=("SMAC3, a Python implementation of 'Sequential Model-based "
"Algorithm Configuration'."),
license="3-clause BSD",
keywords="machine learning algorithm configuration hyperparameter "
"optimization tuning",
url="",
packages=setuptools.find_packages(exclude=['test', 'source']),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: BSD License",
],
platforms=['Linux'],
install_requires=requirements,
tests_require=['mock',
'nose'],
test_suite='nose.collector'
)