Skip to content

Commit

Permalink
Merge pull request #22 from FrescolinoGroup/strip_description_newlines
Browse files Browse the repository at this point in the history
Strip description of newlines to make setuptools happy.
  • Loading branch information
greschd committed Jan 17, 2021
2 parents b845460 + 90dfa9b commit c2e7d02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
PKGNAME_QUALIFIED = 'fsc.' + PKGNAME

with open('doc/description.txt', 'r') as f:
DESCRIPTION = f.read()
DESCRIPTION = f.read().strip()
try:
with open('doc/README', 'r') as f:
README = f.read()
Expand Down

0 comments on commit c2e7d02

Please sign in to comment.