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 625c8e2 commit d99ddf0Copy full SHA for d99ddf0
setup.py
@@ -2,9 +2,15 @@
2
3
from tibber import __version__
4
5
+# read the contents of your README file
6
+from pathlib import Path
7
+this_directory = Path(__file__).parent
8
+long_description = (this_directory / "README.md").read_text()
9
10
setup(
11
name="tibber.py",
12
+ long_description=long_description,
13
+ long_description_content_type='text/markdown',
14
packages=["tibber"],
15
install_requires=[
16
"aiohttp>=3.7.0"
0 commit comments