Browse Source

Merge pull request #203 from felixonmars/setup-py3-fix

setup.py: use codecs.open() so it works for non-utf8 locales
auth
clowwindy 10 years ago
parent
commit
d64450915b
  1. 3
      setup.py

3
setup.py

@ -1,7 +1,8 @@
import codecs
from setuptools import setup
with open('README.rst') as f:
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(

Loading…
Cancel
Save