forked from pykalman/pykalman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 998 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
30
31
32
33
from setuptools import setup, find_packages
setup(
name = 'pykalman',
version = '0.9.5',
author = 'Daniel Duckworth',
author_email = 'pykalman@gmail.com',
description = ('An implementation of the Kalman Filter, Kalman ' +
'Smoother, and EM algorithm in Python'),
license = 'BSD',
keywords = 'kalman filter smoothing em hmm tracking unscented ukf kf',
url = 'http://pykalman.github.com',
packages = find_packages(),
classifiers = [
'Development Status :: 4 - Beta',
'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 = True,
# install_requires = [
# 'numpy',
# 'scipy',
# 'Sphinx',
# 'numpydoc',
# ],
# tests_require = [
# 'nose',
# ]
)