-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
29 lines (27 loc) · 1.02 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='motpy',
version='0.0.10',
url='https://github.com/wmuron/motpy.git',
download_url='https://github.com/wmuron/motpy/releases/tag/v0.0.10-alpha',
author='Wiktor Muron',
author_email='[email protected]',
description='Library for track-by-detection multi object tracking implemented in python',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(exclude=("tests",)),
python_requires='>3.6',
install_requires=['numpy',
'scipy',
'filterpy'],
license='MIT',
keywords=['multi-object-tracking', 'object-tracking', 'kalman-filter'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License'
]
)