Skip to content

Commit

Permalink
remove long desc as pypi doesn't want markdown.
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Feb 21, 2020
1 parent 5c7c3b4 commit 23e8f5b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
author='Charles Leifer',
author_email='coleifer@gmail.com',
description='scout - a lightweight search server powered by SQLite',
long_description=readme,
packages=['scout'],
zip_safe=False,
platforms='any',
Expand Down

1 comment on commit 23e8f5b

@epoz
Copy link

@epoz epoz commented on 23e8f5b Oct 25, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had the same infuriating problem in one of my packages. Fixed by adding:

long_description_content_type="text/markdown",

And I still had a from distutils.core import setup (for stupid historical reasons) updating that to from setuptools import setup also helped, though that is not the case for you here, adding this in case someone stumbles upon this Issue via a web Search

Please sign in to comment.