diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rwxr-xr-x | setup.py | 16 |
2 files changed, 12 insertions, 6 deletions
@@ -2,6 +2,8 @@ .* __*__ *.egg-info +build +dist !.gitignore !.travis.yml @@ -1,15 +1,19 @@ #!/usr/bin/env python3 -from setuptools import setup, find_packages from os import path +from setuptools import setup -here = path.abspath(path.dirname(__file__)) -with open(path.join(here, 'README.md'), encoding='utf-8') as f: - long_description = f.read() +readme_file = path.join(path.abspath(path.dirname(__file__)), 'README.md') +long_description = "" +try: + import pypandoc + long_description = pypandoc.convert(readme_file, 'rst', format='md') +except (IOError, ImportError): + print("Pandoc not found. Long_description conversion failure.") setup( name='mcserver-wrapper', - version='0.3.0', + version='0.3.6', description="Minecraft server wrapper", long_description=long_description, url="https://github.com/Cynerd/mcserver-wrapper", @@ -17,7 +21,7 @@ setup( author_email="cynerd@email.cz", license="GPLv2", - clasifiers=[ + classifiers=[ 'Development Status :: 3 - Alpha', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', |