diff --git a/setup.py b/setup.py index 8e4723c..dd47564 100644 --- a/setup.py +++ b/setup.py @@ -16,12 +16,16 @@ # Initial code got from http://djangosnippets.org/users/danielroseman/ +import codecs import os from setuptools import setup, find_packages def read(*rnames): - with open(os.path.join(os.path.dirname(__file__), *rnames)) as f: + with codecs.open( + os.path.join(os.path.dirname(__file__), *rnames), + 'r', 'utf-8', + ) as f: return f.read()