1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 16:14:45 +00:00

update setup.py

This commit is contained in:
deadc0de6
2018-09-02 16:17:34 +02:00
parent 05e5cad0f8
commit 0e07730e3b

View File

@@ -8,8 +8,8 @@ readme = 'README.md'
here = path.abspath(path.dirname(__file__))
try:
from pypandoc import convert
read_readme = lambda f: convert(f, 'rst')
from pypandoc import convert_file
read_readme = lambda f: convert_file(f, 'rst')
except ImportError:
print('\n[WARNING] pypandoc not found, could not convert \"{}\"\n'.format(readme))
read_readme = lambda f: open(f, 'r').read()
@@ -29,7 +29,7 @@ setup(
author_email='deadc0de6@foo.bar',
license='GPLv3',
requires_python=REQUIRES_PYTHON,
python_requires=REQUIRES_PYTHON,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.3',