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 45f9761 commit 95e3890Copy full SHA for 95e3890
setup.py
@@ -1,13 +1,21 @@
1
"""Setup module for zigpy-xbee"""
2
3
+import os
4
+
5
from setuptools import find_packages, setup
6
7
import zigpy_xbee
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-xbee-homeassistant",
15
version=zigpy_xbee.__version__,
16
description="A library which communicates with XBee radios for zigpy",
17
+ long_description=long_description,
18
+ long_description_content_type="text/markdown",
19
url="http://github.com/zigpy/zigpy-xbee",
20
author="Russell Cloran",
21
author_email="[email protected]",
0 commit comments