json save and load without utf-8
[rainbowstream.git] / setup.py
index eb7c58f014200d46c24198c411dbb12100295201..da93a011b324c00accd73e7b890356e74fc5145a 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,11 @@
 from setuptools import setup, find_packages
+from io import open
 import os
 import os.path
 import sys
 
 # Bumped version
-version = '0.5.7'
+version = '0.5.8'
 
 # Require
 install_requires = [
@@ -32,7 +33,7 @@ if not os.path.isfile(default):
 setup(name='rainbowstream',
       version=version,
       description="A smart and nice Twitter client on terminal.",
-      long_description=open("./README.rst", "r").read(),
+      long_description=open("./README.rst", "r", encoding='utf-8').read(),
       classifiers=[
           "Development Status :: 5 - Production/Stable",
           "Environment :: Console",