diff --git a/setup.py b/setup.py index c95a2f2..ab70067 100644 --- a/setup.py +++ b/setup.py @@ -27,11 +27,14 @@ :license: BSD, see LICENSE for more details. """ import os +import codecs from setuptools import setup def read(fname): - return open(os.path.join(os.path.dirname(__file__), fname)).read() + return codecs.open( + os.path.join(os.path.dirname(__file__), fname) + ).read() setup( name="microsofttranslator",