summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/setup.py b/setup.py
index f950220..0471749 100644
--- a/setup.py
+++ b/setup.py
@@ -7,13 +7,7 @@ except ImportError:
print("error: pywal requires Python 3.5 or greater.")
quit(1)
-try:
- import pypandoc
- LONG_DESC = pypandoc.convert("README.md", "rst")
-except (IOError, ImportError, RuntimeError):
- print("warning: pypandoc not found. Not converting markdown to rst.")
- LONG_DESC = open('README.md').read()
-
+LONG_DESC = open('README.md').read()
VERSION = pywal.__version__
DOWNLOAD = "https://github.com/dylanaraps/pywal/archive/%s.tar.gz" % VERSION