GPy/setup.py

35 lines
1.5 KiB
Python
Raw Normal View History

2012-11-29 16:24:48 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#import os
2013-03-06 13:56:58 +00:00
from setuptools import setup
2012-11-29 16:24:48 +00:00
# Version number
2013-06-17 15:04:35 +01:00
version = '0.4.6'
2012-11-29 16:24:48 +00:00
from pkg_resources import Requirement, resource_string
2012-11-29 16:24:48 +00:00
def read(fname):
2014-07-29 22:51:11 +01:00
return open(os.path.join(os.path.dirname(__file__), fname)).read()
2012-11-29 16:24:48 +00:00
setup(name = 'GPy',
version = version,
author = read('AUTHORS.txt'),
2012-11-29 16:24:48 +00:00
author_email = "james.hensman@gmail.com",
description = ("The Gaussian Process Toolbox"),
license = "BSD 3-clause",
keywords = "machine-learning gaussian-processes kernels",
url = "http://sheffieldml.github.com/GPy/",
2014-03-20 11:58:00 +00:00
packages = ["GPy.models", "GPy.inference.optimization", "GPy.inference", "GPy.inference.latent_function_inference", "GPy.likelihoods", "GPy.mappings", "GPy.examples", "GPy.core.parameterization", "GPy.core", "GPy.testing", "GPy", "GPy.util", "GPy.kern", "GPy.kern._src.psi_comp", "GPy.kern._src", "GPy.plotting.matplot_dep.latent_space_visualizations.controllers", "GPy.plotting.matplot_dep.latent_space_visualizations", "GPy.plotting.matplot_dep", "GPy.plotting"],
2012-11-29 16:24:48 +00:00
package_dir={'GPy': 'GPy'},
package_data = {'GPy': ['defaults.cfg', 'installation.cfg', 'util/data_resources.json', 'util/football_teams.json']},
2012-11-29 16:24:48 +00:00
py_modules = ['GPy.__init__'],
2012-12-06 10:16:19 -08:00
long_description=read('README.md'),
install_requires=['numpy>=1.6', 'scipy>=0.9','matplotlib>=1.1', 'nose'],
2013-02-08 15:42:02 +00:00
extras_require = {
'docs':['Sphinx', 'ipython'],
2013-02-08 15:42:02 +00:00
},
2012-11-29 16:24:48 +00:00
classifiers=[
"License :: OSI Approved :: BSD License"],
zip_safe = False
2012-11-29 16:24:48 +00:00
)