From acfb609f5ce3a5173c907e8106e82de234c04fce Mon Sep 17 00:00:00 2001 From: Aaron Gonzales Date: Wed, 7 Mar 2018 09:49:56 -0700 Subject: [PATCH] adding utf8 encoding to the readme read in setup (#23) * adding utf8 encoding to the readme read in setup * bumped version --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 90fae34..c4554d7 100644 --- a/setup.py +++ b/setup.py @@ -4,10 +4,10 @@ description="Wrapper for Twitter's Premium and Enterprise search APIs", url='https://github.com/twitterdev/search-tweets-python', author='Fiona Pigott, Jeff Kolb, Josh Montague, Aaron Gonzales', - long_description=open('README.rst', 'r').read(), + long_description=open('README.rst', 'r', encoding="utf-8").read(), author_email='agonzales@twitter.com', license='MIT', - version='1.3.0', + version='1.3.1', python_requires='>=3.3', install_requires=["requests", "tweet_parser", "pyyaml"], packages=find_packages(),