aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorDylan Araps <[email protected]>2018-04-01 09:34:34 +1000
committerDylan Araps <[email protected]>2018-04-01 09:34:34 +1000
commit400e7d0c42af803dd5ac4bd5bedc6a65f7298eb4 (patch)
treee0175b631d42a54cf5230a01cf965e264a6cd8a8 /setup.py
parentmisc: cleanup (diff)
parentMerge pull request #213 from dylanaraps/backends (diff)
downloadpywal-400e7d0c42af803dd5ac4bd5bedc6a65f7298eb4.tar.xz
pywal-400e7d0c42af803dd5ac4bd5bedc6a65f7298eb4.zip
general: rebase
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/setup.py b/setup.py
index f950220..67b5365 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
@@ -23,6 +17,7 @@ setuptools.setup(
author="Dylan Araps",
author_email="[email protected]",
description="Generate and change colorschemes on the fly",
+ long_description_content_type="text/markdown",
long_description=LONG_DESC,
keywords="wal colorscheme terminal-emulators changing-colorschemes",
license="MIT",