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 867ec56 commit 1ca1893Copy full SHA for 1ca1893
setup.py
@@ -1,10 +1,16 @@
1
+from pathlib import Path
2
from setuptools import setup, find_packages
3
4
+this_directory = Path(__file__).parent
5
+long_description = (this_directory / "README.md").read_text()
6
+
7
setup(name='animatedledstrip-client',
- version='1.0.1',
8
+ version='1.1.0',
9
url='https://github.com/AnimatedLEDStrip/client-python',
10
license='MIT',
11
author='Max Narvaez',
12
author_email='[email protected]',
13
description='Library for communicating with an AnimatedLEDStrip server',
14
+ long_description=long_description,
15
+ long_description_content_type='text/markdown',
16
packages=find_packages())
0 commit comments