From 464da5c3a6d235342ad3b18f5de8a4d090200913 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Sat, 7 May 2016 01:46:15 +0000 Subject: [PATCH] avoid errors with old versions of pip or non-utf-8 locales by specifying the encoding of README.rst --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e9f16eb..312acde 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setuptools.setup(name='brozzler', url='https://github.com/nlevitt/brozzler', author='Noah Levitt', author_email='nlevitt@archive.org', - long_description=open('README.rst').read(), + long_description=open('README.rst', encoding='UTF-8').read(), license='Apache License 2.0', packages=['brozzler'], package_data={'brozzler': ['behaviors.d/*.js*', 'behaviors.yaml']},