forked from christophmark/bayesloop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 775 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from setuptools import setup
setup(
name='bayesloop',
packages=['bayesloop'],
version='1.5.7',
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.5.7',
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', 'cloudpickle'],
keywords=['bayes', 'inference', 'fitting', 'model selection', 'hypothesis testing', 'time series', 'time-varying', 'marginal likelihood'],
classifiers=[],
)