Skip to content

Commit 30de8aa

Browse files
committed
long description
1 parent ddcb21a commit 30de8aa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
from setuptools import setup, find_packages
22

3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name='motpy',
58
version='0.0.8',
@@ -8,6 +11,8 @@
811
author='Wiktor Muron',
912
author_email='[email protected]',
1013
description='Library for track-by-detection multi object tracking implemented in python',
14+
long_description=long_description,
15+
long_description_content_type='text/markdown',
1116
packages=find_packages(exclude=("tests",)),
1217
python_requires='>3.6',
1318
install_requires=['numpy',

0 commit comments

Comments
 (0)