-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
29 lines (26 loc) · 978 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- coding: utf-8 -*-
from distutils.core import setup
version = '1.3.0'
setup(
name='causal_impact',
packages=['causal_impact'],
version=version,
description='Python package for causal inference using Bayesian structural time-series models.',
url='https://github.com/tcassou/causal_impact',
download_url='https://github.com/tcassou/causal_impact/archive/{}.tar.gz'.format(version),
keywords=['bayesian', 'structural', 'time-series', 'causal', 'impact', 'python', 'inference'],
classifiers=[
'Programming Language :: Python',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
],
install_requires=[
'numpy>=1.14.3',
'scipy>=0.18.1',
'matplotlib>=1.5.3',
'statsmodels>=0.9.0',
],
)