You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of March 16, 2018, PyPI.org aka Warehouse (finally) supports Markdown in long descriptions. Warehouse replaced the old legacy PyPI implementation in April 2018.
You need to:
- Make sure setuptools is upgraded to version 38.6.0 or newer
- Make sure twine is upgraded to version 1.11.0 or newer
- Make sure wheel is upgraded to version 0.31.0 or newer
- Add a new field named long_description_content_type to your setup() call, and set it to 'text/markdown':
setup(
long_description="""# Markdown supported!\n\n* Cheer\n* Celebrate\n""",
long_description_content_type='text/markdown',
# ....
)
- Use twine to upload your distribution to PyPI.
The text was updated successfully, but these errors were encountered:
seen here: https://pypi.org/project/milksnake/#description
per the internet:
The text was updated successfully, but these errors were encountered: