Use Markdown for your project description
Project description
setuptools-markdown
Use Markdown for your project description
Install
Install pandoc
Install this module
pip install setuptools-markdown
Use
#!/usr/bin/env python
# setup.py
from setuptools import setup
setup(
...
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
...
)
The plugin will read the specified file, convert it to reST using pypandoc and store the resulting reST in the long_description metadata field of your distribution.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.