Fix setup.py to be able to read README.rst on PyPI.

This commit is contained in:
pyohei 2018-06-11 07:28:57 +09:00
parent 9f7a78297b
commit f1a2ad66df

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 = ''