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 aaea5a2 commit 2cdebf4Copy full SHA for 2cdebf4
1 file changed
setup.py
@@ -11,7 +11,8 @@
11
12
# Load readme
13
with open('README.rst', encoding='utf-8') as f:
14
- long_description = f.read()
+ long_description: str = f.read()
15
+ long_description = long_description.split('Install Instructions')[0].strip()
16
17
# Load requirements
18
with open('requirements.txt', encoding='utf-8') as f:
0 commit comments