Skip to content

Commit 2cdebf4

Browse files
committed
Fix invalid description for pypi release
1 parent aaea5a2 commit 2cdebf4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
# Load readme
1313
with open('README.rst', encoding='utf-8') as f:
14-
long_description = f.read()
14+
long_description: str = f.read()
15+
long_description = long_description.split('Install Instructions')[0].strip()
1516

1617
# Load requirements
1718
with open('requirements.txt', encoding='utf-8') as f:

0 commit comments

Comments
 (0)