diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-04-01 09:34:34 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-04-01 09:34:34 +1000 |
| commit | 400e7d0c42af803dd5ac4bd5bedc6a65f7298eb4 (patch) | |
| tree | e0175b631d42a54cf5230a01cf965e264a6cd8a8 /setup.py | |
| parent | 40454ff0c642b13b9cfcd114dfeb1c71829227db (diff) | |
| parent | e25bc9e2d895f3bbf157cceaf7077c463369ad59 (diff) | |
general: rebase
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -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", |
