summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2018-04-01 09:34:34 +1000
committerDylan Araps <dylan.araps@gmail.com>2018-04-01 09:34:34 +1000
commit400e7d0c42af803dd5ac4bd5bedc6a65f7298eb4 (patch)
treee0175b631d42a54cf5230a01cf965e264a6cd8a8 /setup.py
parent40454ff0c642b13b9cfcd114dfeb1c71829227db (diff)
parente25bc9e2d895f3bbf157cceaf7077c463369ad59 (diff)
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="dylan.araps@gmail.com",
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",