forked from SheffieldML/GPyOpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.58 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
40
41
42
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Version number
version = '0.1.4'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name = 'GPyOpt',
version = version,
author = read('AUTHORS.txt'),
author_email = "[email protected]",
description = ("The Bayesian Optimization Toolbox"),
license = "BSD 3-clause",
keywords = "machine-learning gaussian-processes kernels optimization",
url = "http://sheffieldml.github.com/GPyOpt/",
packages = ["GPyOpt.fmodels",
"GPyOpt.core",
"GPyOpt.methods",
"GPyOpt.plotting",
"GPyOpt.interface",
"GPyOpt.demos",
"GPyOpt.util"],
package_dir={'GPyOpt': 'GPyOpt'},
include_package_data = True,
py_modules = ['GPyOpt.__init__'],
long_description=read('README.md'),
install_requires=['numpy>=1.7', 'scipy>=0.12', 'GPy>=0.6'],
extras_require = {'optimizer':['DIRECT','cma','pyDOE'],'docs':['matplotlib >=1.3','Sphinx','IPython']},
classifiers=['License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence'],
scripts=['gpyopt.py'],
)