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 f6561da commit 1f82e51Copy full SHA for 1f82e51
setup.py
@@ -1,5 +1,10 @@
1
+from pathlib import Path
2
+
3
from setuptools import setup
4
5
+this_directory = Path(__file__).parent
6
+long_description = (this_directory / "README.md").read_text()
7
8
setup(
9
name="PySwitchbot",
10
packages=["switchbot", "switchbot.devices", "switchbot.adv_parsers"],
@@ -12,6 +17,8 @@
12
17
],
13
18
version="0.53.1",
14
19
description="A library to communicate with Switchbot",
20
+ long_description=long_description,
21
+ long_description_content_type="text/markdown",
15
22
author="Daniel Hjelseth Hoyer",
16
23
url="https://github.com/sblibs/pySwitchbot/",
24
license="MIT",
0 commit comments