https://github.com/GPflow/GPflow
Revision e315772007b2353eeca5565ed5b450fa48e82f2d authored by James Hensman on 31 May 2016, 13:03:57 UTC, committed by James Hensman on 31 May 2016, 13:03:57 UTC
This reverts commit 3d6972778a93fe88e125ea82068e7c124a75f788, reversing
changes made to e784aca71a9e487bed131a2734b1daa774e4f8fb.
1 parent 3d69727
Raw File
Tip revision: e315772007b2353eeca5565ed5b450fa48e82f2d authored by James Hensman on 31 May 2016, 13:03:57 UTC
Revert "merged model.py: adding jitter to the Cholesky during posterior samples"
Tip revision: e315772
setup.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
from setuptools import setup
import re


# load version form _version.py
VERSIONFILE = "GPflow/_version.py"
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, verstrline, re.M)
if mo:
    verstr = mo.group(1)
else:
    raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))

setup(name='GPflow',
      version=verstr,
      author="James Hensman, Alex Matthews",
      author_email="james.hensman@gmail.com",
      description=("Gaussian process methods in tensorflow"),
      license = "BSD 3-clause",
      keywords = "machine-learning gaussian-processes kernels tensorflow",
      url = "http://github.com/gpflow/gpflow",
      ext_modules = [],
      packages = ["GPflow"],
      package_dir={'GPflow': 'GPflow'},
      py_modules = ['GPflow.__init__'],
      test_suite = 'testing',
      install_requires=['numpy>=1.9', 'scipy>=0.16', 'tensorflow>=0.7.1'],
      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']
      )
back to top