Merge pull request #29 from pyohei/master
Fix setup script to read details from PyPI
This commit is contained in:
commit
b406f4b19e
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue