From 238d07ce4172316ab8eb95bdb8524f5e3d6e4fed Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 25 Jul 2017 16:22:15 +1000 Subject: Use README.md on pypi --- setup.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 306069f..6bbef5d 100644 --- a/setup.py +++ b/setup.py @@ -8,11 +8,12 @@ except (ImportError, SyntaxError): quit(1) -DESC = ( - "View the DOCS at: https://github.com/dylanaraps/pywal\n\n" - "Pypi doesn't like markdown OR rst with anchor links so " - "you'll have to view the documentation elsewhere.\n" -) +try: + import pypandoc + LONG_DESC = pypandoc.convert("README.md", "rst") +except(IOError, ImportError): + LONG_DESC = open('README.md').read() + VERSION = pywal.__version__ DOWNLOAD = "https://github.com/dylanaraps/pywal/archive/%s.tar.gz" % VERSION @@ -24,7 +25,7 @@ setuptools.setup( author="Dylan Araps", author_email="dylan.araps@gmail.com", description="Generate and change colorschemes on the fly", - long_description=DESC, + long_description=LONG_DESC, license="MIT", url="https://github.com/dylanaraps/pywal", download_url=DOWNLOAD, -- cgit v1.2.3