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 65dfb3c commit cd489ceCopy full SHA for cd489ce
setup.py
@@ -1,13 +1,21 @@
1
"""Setup module for zigpy-deconz"""
2
3
+import os
4
+
5
from setuptools import find_packages, setup
6
7
import zigpy_deconz
8
9
+this_directory = os.path.join(os.path.abspath(os.path.dirname(__file__)))
10
+with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
11
+ long_description = f.read()
12
13
setup(
14
name="zigpy-deconz",
15
version=zigpy_deconz.__version__,
16
description="A library which communicates with Deconz radios for zigpy",
17
+ long_description=long_description,
18
+ long_description_content_type="text/markdown",
19
url="http://github.com/zigpy/zigpy-deconz",
20
author="Daniel Schmidt",
21
author_email="[email protected]",
0 commit comments