Merge pull request #29 from pyohei/master

Fix setup script to read details from PyPI
This commit is contained in:
Josiah Carlson 2018-06-21 09:40:46 -07:00 committed by GitHub
commit b406f4b19e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
from distutils.core import setup from distutils.core import setup
try: try:
with open('README') as f: with open('README.rst') as f:
long_description = f.read() long_description = f.read()
except: except:
long_description = '' long_description = ''
@ -28,6 +28,7 @@ setup(
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
], ],
license='GNU LGPL v2.1', license='GNU LGPL v2.1',
long_description=long_description, long_description=long_description,