skillfed

setuptools-markdown

[Deprecated] Use Markdown for your project description

setuptools-markdown v0.4.1 110.3K downloads/30d#12,470 on PyPI28
Permissive license MIT Abandoned released

What it is and what it does

setuptools-markdown is a setuptools plugin that integrates Markdown support into your package build process. During setup, it reads a Markdown file you specify, converts it to reStructuredText using pypandoc, and stores the result in your package's long_description metadata field for PyPI. This was useful before PyPI and setuptools added native Markdown support.

The package is deprecated and no longer maintained. The maintainer explicitly recommends using setuptools' built-in Markdown functionality instead. It has not been updated since 2019, and the repository shows no activity since 2022. If you are starting a new project, you should use modern setuptools features rather than this plugin.

Use it for:

  • Maintaining legacy packages that were built with this plugin before native Markdown support existed
  • Converting existing setup.py configurations that depend on setuptools-markdown without immediate refactoring
  • Understanding how Markdown-to-reStructuredText conversion worked in older setuptools workflows

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Converts Markdown files to reStructuredText during setuptools builds, allowing you to use Markdown for your package's long_description metadata instead of reStructuredText.

No. The package is abandoned and explicitly deprecated by its maintainer. Modern setuptools and PyPI support Markdown natively without requiring this plugin. Only install if maintaining legacy code that already depends on it.

Install

setuptools-markdown on PyPI

pip

pip install setuptools-markdown

uv

uv add setuptools-markdown

poetry

poetry add setuptools-markdown

Installing setuptools-markdown

Before you install

Low install friction with a single runtime dependency (pypandoc), but the package is abandoned—last release was 2019-08-14 and last commit 2022-05-11. The maintainer's own documentation explicitly recommends against using this in favor of built-in setuptools functionality.

License in practice

MIT license is permissive and poses no restrictions on use or redistribution.

Quickstart

pip install setuptools-markdown

In setup.py:
from setuptools import setup
setup(
    setup_requires=['setuptools-markdown'],
    long_description_markdown_filename='README.md',
)

pandoc system library must be installed before running setup

Verify before relying

  • Whether pandoc system library installation is required before pip install succeeds
  • Compatibility with modern setuptools versions released after 2019

Package facts

License MIT (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 1 — pypandoc
Maintenance abandoned — 2,557 days since the last release
Last repo commit
First released
Downloads 110,313/month — #12,470 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: setuptools_markdown-0.4.1-py2.py3-none-any.whl

Keywords: distutils, setuptools, markdown

Tags

markdown to rst conversionsetuptools markdown supportpypi markdown descriptionmarkdown long_descriptionsetup.py markdown plugin
deprecatedlegacy

More Build Tools packages