Fix setup.py to be able to read README.rst on PyPI.
This commit is contained in:
parent
9f7a78297b
commit
f1a2ad66df
1 changed files with 1 additions and 1 deletions
2
setup.py
2
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 = ''
|
||||||
|
|
Loading…
Reference in a new issue