diff --git a/setup.py b/setup.py index 7979f89..e2053af 100644 --- a/setup.py +++ b/setup.py @@ -4,10 +4,10 @@ from setuptools import setup -with open('README.rst', 'rb') as infile: +with open('README.rst', 'r') as infile: long_description = infile.read() -with open('requirements.txt', 'rb') as infile: +with open('requirements.txt', 'r') as infile: install_requires = infile.read().split() setup(