Browse Source

setup.py: use codecs.open() so it works for non-utf8 locales

auth
Felix Yan 10 years ago
parent
commit
e6306f7b32
  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