We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddcb21a commit 30de8aaCopy full SHA for 30de8aa
setup.py
@@ -1,5 +1,8 @@
1
from setuptools import setup, find_packages
2
3
+with open("README.md", "r") as fh:
4
+ long_description = fh.read()
5
+
6
setup(
7
name='motpy',
8
version='0.0.8',
@@ -8,6 +11,8 @@
11
author='Wiktor Muron',
9
12
author_email='[email protected]',
10
13
description='Library for track-by-detection multi object tracking implemented in python',
14
+ long_description=long_description,
15
+ long_description_content_type='text/markdown',
16
packages=find_packages(exclude=("tests",)),
17
python_requires='>3.6',
18
install_requires=['numpy',
0 commit comments