Skip to content

Commit 1ca1893

Browse files
committed
Add long description
1 parent 867ec56 commit 1ca1893

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1+
from pathlib import Path
12
from setuptools import setup, find_packages
23

4+
this_directory = Path(__file__).parent
5+
long_description = (this_directory / "README.md").read_text()
6+
37
setup(name='animatedledstrip-client',
4-
version='1.0.1',
8+
version='1.1.0',
59
url='https://github.com/AnimatedLEDStrip/client-python',
610
license='MIT',
711
author='Max Narvaez',
812
author_email='[email protected]',
913
description='Library for communicating with an AnimatedLEDStrip server',
14+
long_description=long_description,
15+
long_description_content_type='text/markdown',
1016
packages=find_packages())

0 commit comments

Comments
 (0)