forked from frank-hutter/fanova
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsetup.py
26 lines (23 loc) · 1.23 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
from setuptools import setup, find_packages
with open("fanova/__version__.py") as fh:
version = fh.readlines()[-1].split()[-1].strip("\"'")
setup(
name = "fanova",
version = version,
packages = find_packages(),
install_requires = [
'numpy',
'pandas',
'docutils>=0.3',
'setuptools',
'matplotlib>=1.4.2',
'pyrfr>=0.5.0',
'ConfigSpace'],
author = "Stefan Falkner and Christina Hernandez Wunsch. Legacy branch: Tobias Domhan, Aaron Klein and Frank Hutter (FANOVA)",
author_email = "[email protected]",
description = "Functional ANOVA: an implementation of the ICML 2014 paper 'An Efficient Approach for Assessing Hyperparameter Importance' by Frank Hutter, Holger Hoos and Kevin Leyton-Brown.",
include_package_data = True,
keywords = "hyperparameter parameter optimization bayesian smac global variance analysis",
license = "FANOVA is free for academic & non-commercial usage. Please contact Frank Hutter([email protected]) to discuss obtaining a license for commercial purposes.",
url = "http://automl.org/fanova"
)