forked from wwrechard/pydlm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (38 loc) · 1.07 KB
/
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
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
setup(
name = 'pydlm',
version = '0.1.1.8',
author = 'Xiangyu Wang',
author_email = '[email protected]',
description = ('A python library for the Bayesian dynamic linear ' +
'model for time series modeling'),
license = 'BSD',
keywords = 'dlm bayes bayesian kalman filter smoothing dynamic model',
url = 'https://github.com/wwrechard/pydlm',
packages = find_packages(),
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
include_package_data = False,
install_requires = [
'numpy',
'matplotlib',
],
tests_require = [
'unittest',
],
extras_require = {
'docs': [
'Sphinx',
],
'tests': [
'unittest',
],
},
)