From ea31351cf1517e4df9fae7dd4bffdaf2e55f60f8 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Sun, 26 Nov 2017 19:38:32 -0600 Subject: [PATCH] Read requirements and readme in setup.py as strings --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(