2012-11-29 16:24:48 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
2015-10-01 16:27:16 +01:00
|
|
|
|
|
|
|
|
#===============================================================================
|
|
|
|
|
# Copyright (c) 2012 - 2014, GPy authors (see AUTHORS.txt).
|
|
|
|
|
# Copyright (c) 2014, James Hensman, Max Zwiessele
|
|
|
|
|
# Copyright (c) 2015, Max Zwiessele
|
|
|
|
|
#
|
|
|
|
|
# All rights reserved.
|
|
|
|
|
#
|
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
|
#
|
|
|
|
|
# * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
|
# list of conditions and the following disclaimer.
|
|
|
|
|
#
|
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
# and/or other materials provided with the distribution.
|
|
|
|
|
#
|
2015-10-02 18:26:17 +01:00
|
|
|
# * Neither the name of GPy nor the names of its
|
2015-10-01 16:27:16 +01:00
|
|
|
# contributors may be used to endorse or promote products derived from
|
|
|
|
|
# this software without specific prior written permission.
|
|
|
|
|
#
|
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
#===============================================================================
|
|
|
|
|
|
2015-09-10 08:35:09 +01:00
|
|
|
from __future__ import print_function
|
2014-08-07 10:53:18 -07:00
|
|
|
import os
|
2015-08-04 18:12:49 +01:00
|
|
|
import sys
|
2015-04-27 14:21:46 +01:00
|
|
|
from setuptools import setup, Extension
|
|
|
|
|
import numpy as np
|
2012-11-29 16:24:48 +00:00
|
|
|
|
2015-09-10 08:35:09 +01:00
|
|
|
|
2012-11-29 16:24:48 +00:00
|
|
|
def read(fname):
|
2015-10-07 13:17:01 +01:00
|
|
|
try:
|
|
|
|
|
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
|
2015-10-07 13:27:38 +01:00
|
|
|
return unicode(f.read(), 'utf-8')
|
2015-10-07 13:17:01 +01:00
|
|
|
except NameError:
|
|
|
|
|
#python 3
|
|
|
|
|
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
|
2015-10-07 13:36:11 +01:00
|
|
|
return f.read()
|
2012-11-29 16:24:48 +00:00
|
|
|
|
2015-09-09 14:33:08 +01:00
|
|
|
def read_to_rst(fname):
|
|
|
|
|
try:
|
|
|
|
|
import pypandoc
|
2015-09-10 08:38:45 +01:00
|
|
|
#print 'Warning in installation: For rst formatting in pypi, consider installing pypandoc for conversion'
|
2015-09-10 15:34:12 +01:00
|
|
|
with open('README.rst', 'w') as f:
|
|
|
|
|
f.write(pypandoc.convert('README.md', 'rst'))
|
2015-10-07 13:17:01 +01:00
|
|
|
except ImportError:
|
2015-09-09 14:33:08 +01:00
|
|
|
return read(fname)
|
|
|
|
|
|
2015-09-09 09:45:01 +01:00
|
|
|
version_dummy = {}
|
|
|
|
|
exec(read('GPy/__version__.py'), version_dummy)
|
|
|
|
|
__version__ = version_dummy['__version__']
|
|
|
|
|
del version_dummy
|
2015-09-09 09:28:42 +01:00
|
|
|
|
2015-09-10 08:35:09 +01:00
|
|
|
#Mac OS X Clang doesn't support OpenMP at the current time.
|
2015-09-07 13:38:11 +01:00
|
|
|
#This detects if we are building on a Mac
|
|
|
|
|
def ismac():
|
2015-09-10 15:06:15 +01:00
|
|
|
return sys.platform[:6] == 'darwin'
|
2015-09-07 13:38:11 +01:00
|
|
|
|
|
|
|
|
if ismac():
|
|
|
|
|
compile_flags = [ '-O3', ]
|
2015-09-08 21:38:48 +01:00
|
|
|
link_args = []
|
2015-09-07 13:38:11 +01:00
|
|
|
else:
|
|
|
|
|
compile_flags = [ '-fopenmp', '-O3', ]
|
|
|
|
|
link_args = ['-lgomp']
|
2015-04-27 14:21:46 +01:00
|
|
|
|
|
|
|
|
ext_mods = [Extension(name='GPy.kern._src.stationary_cython',
|
2015-09-11 15:08:30 +01:00
|
|
|
sources=['GPy/kern/_src/stationary_cython.c',
|
|
|
|
|
'GPy/kern/_src/stationary_utils.c'],
|
|
|
|
|
include_dirs=[np.get_include(),'.'],
|
2015-04-27 14:21:46 +01:00
|
|
|
extra_compile_args=compile_flags,
|
2015-09-07 13:38:11 +01:00
|
|
|
extra_link_args = link_args),
|
2015-04-27 19:47:19 +01:00
|
|
|
Extension(name='GPy.util.choleskies_cython',
|
2015-08-17 12:21:54 +02:00
|
|
|
sources=['GPy/util/choleskies_cython.c'],
|
2015-09-11 15:26:04 +01:00
|
|
|
include_dirs=[np.get_include(),'.'],
|
2015-09-07 13:38:11 +01:00
|
|
|
extra_link_args = link_args,
|
2015-08-17 15:04:43 +01:00
|
|
|
extra_compile_args=compile_flags),
|
2015-04-28 14:57:00 +01:00
|
|
|
Extension(name='GPy.util.linalg_cython',
|
|
|
|
|
sources=['GPy/util/linalg_cython.c'],
|
2015-09-11 15:26:04 +01:00
|
|
|
include_dirs=[np.get_include(),'.'],
|
2015-04-28 14:57:00 +01:00
|
|
|
extra_compile_args=compile_flags),
|
2015-04-27 16:00:42 +01:00
|
|
|
Extension(name='GPy.kern._src.coregionalize_cython',
|
2015-04-27 19:47:19 +01:00
|
|
|
sources=['GPy/kern/_src/coregionalize_cython.c'],
|
2015-09-11 15:26:04 +01:00
|
|
|
include_dirs=[np.get_include(),'.'],
|
2015-04-27 16:00:42 +01:00
|
|
|
extra_compile_args=compile_flags)]
|
2015-04-27 14:21:46 +01:00
|
|
|
|
2012-11-29 16:24:48 +00:00
|
|
|
setup(name = 'GPy',
|
2015-09-09 08:58:01 +01:00
|
|
|
version = __version__,
|
2013-03-11 12:33:03 +00:00
|
|
|
author = read('AUTHORS.txt'),
|
2015-09-09 13:56:54 +01:00
|
|
|
author_email = "gpy.authors@gmail.com",
|
2012-11-29 16:24:48 +00:00
|
|
|
description = ("The Gaussian Process Toolbox"),
|
|
|
|
|
license = "BSD 3-clause",
|
|
|
|
|
keywords = "machine-learning gaussian-processes kernels",
|
2013-03-11 12:33:03 +00:00
|
|
|
url = "http://sheffieldml.github.com/GPy/",
|
2015-04-27 14:21:46 +01:00
|
|
|
ext_modules = ext_mods,
|
2015-10-06 14:04:15 +01:00
|
|
|
packages = ["GPy",
|
|
|
|
|
"GPy.core",
|
|
|
|
|
"GPy.core.parameterization",
|
|
|
|
|
"GPy.kern",
|
|
|
|
|
"GPy.kern._src",
|
|
|
|
|
"GPy.kern._src.psi_comp",
|
|
|
|
|
"GPy.models",
|
|
|
|
|
"GPy.inference",
|
2014-11-05 16:31:22 +00:00
|
|
|
"GPy.inference.optimization",
|
2014-11-11 09:56:15 +00:00
|
|
|
"GPy.inference.mcmc",
|
2014-11-05 16:31:22 +00:00
|
|
|
"GPy.inference.latent_function_inference",
|
2015-10-06 14:04:15 +01:00
|
|
|
"GPy.likelihoods",
|
|
|
|
|
"GPy.mappings",
|
|
|
|
|
"GPy.examples",
|
|
|
|
|
"GPy.testing",
|
|
|
|
|
"GPy.util",
|
|
|
|
|
"GPy.plotting",
|
|
|
|
|
"GPy.plotting.gpy_plot",
|
|
|
|
|
"GPy.plotting.matplot_dep",
|
2015-10-10 18:49:20 +01:00
|
|
|
"GPy.plotting.matplot_dep.controllers",
|
2015-10-10 16:39:37 +01:00
|
|
|
"GPy.plotting.plotly_dep",
|
2015-10-06 14:04:15 +01:00
|
|
|
],
|
2012-11-29 16:24:48 +00:00
|
|
|
package_dir={'GPy': 'GPy'},
|
2014-11-11 09:56:15 +00:00
|
|
|
package_data = {'GPy': ['defaults.cfg', 'installation.cfg',
|
|
|
|
|
'util/data_resources.json',
|
2015-09-09 09:28:42 +01:00
|
|
|
'util/football_teams.json',
|
2015-10-06 14:04:15 +01:00
|
|
|
'plotting/plotting_tests/baseline/*.png'
|
2015-09-09 09:45:01 +01:00
|
|
|
]},
|
2014-11-11 09:56:15 +00:00
|
|
|
include_package_data = True,
|
2012-11-29 16:24:48 +00:00
|
|
|
py_modules = ['GPy.__init__'],
|
2014-11-11 09:56:15 +00:00
|
|
|
test_suite = 'GPy.testing',
|
2015-09-09 18:44:37 +01:00
|
|
|
long_description=read_to_rst('README.md'),
|
2015-09-10 08:19:11 +01:00
|
|
|
install_requires=['numpy>=1.7', 'scipy>=0.16', 'six'],
|
2015-09-23 16:25:39 +01:00
|
|
|
extras_require = {'docs':['matplotlib >=1.3','Sphinx','IPython'],'optional':['mpi4py']},
|
2014-11-11 09:56:15 +00:00
|
|
|
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',
|
2015-10-11 09:33:56 +01:00
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
|
]
|
2012-11-29 16:24:48 +00:00
|
|
|
)
|
2015-10-10 13:32:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# Check config files and settings:
|
|
|
|
|
local_file = os.path.abspath(os.path.join(os.path.dirname(__file__), 'GPy', 'installation.cfg'))
|
|
|
|
|
home = os.getenv('HOME') or os.getenv('USERPROFILE')
|
|
|
|
|
user_file = os.path.join(home,'.config', 'GPy', 'user.cfg')
|
|
|
|
|
|
|
|
|
|
print("")
|
|
|
|
|
if not os.path.exists(user_file):
|
|
|
|
|
# Does an old config exist?
|
|
|
|
|
old_user_file = os.path.join(home,'.gpy_user.cfg')
|
|
|
|
|
if os.path.exists(old_user_file):
|
|
|
|
|
# Move it to new location:
|
|
|
|
|
print("GPy: Found old config file, moving to new location {}".format(user_file))
|
|
|
|
|
os.rename(old_user_file, user_file)
|
|
|
|
|
else:
|
|
|
|
|
# No config file exists, save informative stub to user config folder:
|
|
|
|
|
print("GPy: Saving user configuration file to {}".format(user_file))
|
|
|
|
|
if not os.path.exists(os.path.dirname(user_file)):
|
|
|
|
|
os.makedirs(os.path.dirname(user_file))
|
|
|
|
|
with open(user_file, 'w') as f:
|
|
|
|
|
with open(local_file, 'r') as l:
|
|
|
|
|
tmp = l.read()
|
|
|
|
|
f.write(tmp)
|
|
|
|
|
else:
|
|
|
|
|
print("GPy: User configuration file at location {}".format(user_file))
|