Skip to content

Commit d99ddf0

Browse files
committed
Added long_description to see if that fixed deployment problems.
1 parent 625c8e2 commit d99ddf0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22

33
from tibber import __version__
44

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()
59

610
setup(
711
name="tibber.py",
12+
long_description=long_description,
13+
long_description_content_type='text/markdown',
814
packages=["tibber"],
915
install_requires=[
1016
"aiohttp>=3.7.0"

0 commit comments

Comments
 (0)