forked from RJT1990/pyflux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
14 lines (14 loc) · 693 Bytes
/
setup.py
File metadata and controls
14 lines (14 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from distutils.core import setup
setup(
name = 'pyflux',
packages = ['pyflux','pyflux.arma','pyflux.distributions','pyflux.gas','pyflux.garch','pyflux.inference','pyflux.output','pyflux.tests','pyflux.var','pyflux.gpnarx','pyflux.ssm'],
version = '0.2.9',
description = 'A time-series analysis library for Python',
author = 'Ross Taylor',
author_email = 'rj-taylor@live.co.uk',
url = 'https://github.com/rjt1990/pyflux',
download_url = 'https://github.com/rjt1990/pyflux/tarball/0.2.9',
keywords = ['time series','machine learning','bayesian statistics'],
license = 'BSD',
install_requires=['numpy', 'pandas', 'scipy', 'matplotlib', 'seaborn','numdifftools','patsy']
)