diff --git a/setup.py b/setup.py index da90399..5c1ce15 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,14 @@ setup( name='bayesloop', packages=['bayesloop'], - version='1.4', + version='1.5.0', description='Probabilistic programming framework that facilitates objective model selection for time-varying parameter models.', url='http://bayesloop.com', - download_url = 'https://github.com/christophmark/bayesloop/tarball/1.4', + download_url = 'https://github.com/christophmark/bayesloop/tarball/1.5.0', author='Christoph Mark', author_email='christoph.mark@fau.de', license='The MIT License (MIT)', install_requires=['numpy>=1.11.0', 'scipy>=0.17.1', 'sympy>=1.0', 'matplotlib>=1.5.1', 'tqdm>=4.10.0', 'dill>=0.2.5'], - keywords = ['bayes', 'inference', 'fitting', 'model selection', 'hypothesis testing', 'time series', 'time-varying', 'marginal likelihood'], - classifiers = [], + keywords=['bayes', 'inference', 'fitting', 'model selection', 'hypothesis testing', 'time series', 'time-varying', 'marginal likelihood'], + classifiers=[], )