forked from pykalman/pykalman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 loc) · 1.17 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
40
41
from setuptools import setup, find_packages
setup(
name = 'pykalman',
version = '0.9.5',
author = 'Daniel Duckworth',
author_email = '[email protected]',
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(),
package_data={'pykalman': ['datasets/descr/robot.rst', 'datasets/data/robot.mat']},
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',
],
tests_require = [
'nose',
],
extras_require = {
'docs': [
'Sphinx',
'numpydoc',
],
'tests': [
'nose',
],
},
)