avoid errors with old versions of pip or non-utf-8 locales by specifying the encoding of README.rst

This commit is contained in:
Noah Levitt 2016-05-07 01:46:15 +00:00
parent 1445aa9976
commit 464da5c3a6

View File

@ -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']},