summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py13
1 files changed, 7 insertions, 6 deletions
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,