You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

setuptools-markdown

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

setuptools-markdown

[Deprecated] Use Markdown for your project description

0.4.1
PyPI
Maintainers
2

setuptools-markdown

Use Markdown <http://daringfireball.net/projects/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 <https://dustingram.com/articles/2018/03/16/markdown-descriptions-on-pypi/>__ for details.

Install

  • Install pandoc <http://johnmacfarlane.net/pandoc/>_

  • 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 <http://en.wikipedia.org/wiki/ReStructuredText>__ using pypandoc <https://pypi.python.org/pypi/pypandoc>__ and store the resulting reST in the long_description metadata field of your distribution.

Keywords

distutils setuptools markdown

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts