Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/msabramo/setuptools-markdown

Use Markdown for your project description
https://github.com/msabramo/setuptools-markdown

Last synced: about 1 month ago
JSON representation

Use Markdown for your project description

Awesome Lists containing this project

README

        

setuptools-markdown
===================

Use `Markdown `__ for your
project description

-------------------------------------------------------------------------

This project is deprecated.
===========================

**Instead of using this, you should use the built-in functionality of
setuptools and PyPI.**

See `this page
`__
for details.

-------------------------------------------------------------------------

Install
=======

1. Install `pandoc `_

2. Install this module

.. code:: console

pip install setuptools-markdown

Use
===

.. code:: python

#!/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.