forked from SheffieldML/GPyOpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.48 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from GPyOpt.__version__ import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
packages = find_packages(exclude=("GPyOpt.testing",))
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.io/GPyOpt/",
packages = packages,
package_dir = {'GPyOpt': 'GPyOpt'},
include_package_data = True,
py_modules = ['GPyOpt.__init__'],
long_description = read('README.md'),
install_requires = ['numpy>=1.7', 'scipy>=0.16', 'GPy>=1.8'],
extras_require = {'optimizer':['DIRECT','cma','pyDOE','sobol_seq'],'docs':['matplotlib >=1.3','Sphinx','IPython'],'others':['pandas']},
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'],
)