diff --git a/setup.py b/setup.py index f05689c..eef1773 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,7 @@ import os import sys +import io try: from setuptools import setup @@ -23,7 +24,7 @@ name='django-postgrespool', version='0.3.0', description='Postgres Connection Pooling for Django.', - long_description=open('README.rst').read(), + long_description=io.open('README.rst', encoding='utf-8').read(), author='Kenneth Reitz', author_email='me@kennethreitz.com', url='https://github.com/kennethreitz/django-postgrespool',