forked from ido90/Optimized-Kalman-Filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 773 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Optimized Kalman Filter",
version="0.0.2",
license='MIT',
author="Ido Greenberg",
description="Optimization of a Kalman Filter from data of states and their observations.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
url="https://github.com/ido90/Optimized-Kalman-Filter",
keywords = ["OKF", "Optimized Kalman Filter", "Kalman Filter"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
python_requires='>=3.5',
py_modules=["okf"],
install_requires=["torch"]
)