From 9160b359e5a539168c97fd449386026bc7519fa3 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Sun, 21 Dec 2014 00:40:10 -0800 Subject: [PATCH] setup.py: Use setuptools-markdown Use [setuptools-markdown](https://pypi.python.org/pypi/setuptools-markdown) to use README.rst for PyPI long description. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 5ce1fa3..aee93df 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,8 @@ author_email = 'jon.brandvein@gmail.com', license = 'MIT License', description = 'A library for defining struct-like classes', + setup_requires = ['setuptools-markdown'], + long_description_markdown_filename = 'README.md', classifiers = [ 'Development Status :: 3 - Alpha',