Bumped version
[rainbowstream.git] / setup.py
index 9e5b65e536e0ad41e0f1bd838ef9e9cb1546609c..31300ea2614cdc0675a6281412a667783a8b88c5 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,27 +3,35 @@ import os
 import os.path
 import sys
 
+if sys.version[0] == "2":
+    from pipes import quote
+else:
+    from shlex import quote
+
 # Bumped version
-version = '0.6.0'
+version = '1.3.4'
 
 # Require
 install_requires = [
     "python-dateutil",
-    "requests",
+    "arrow",
+    "requests==2.5.3",
     "pyfiglet",
     "twitter",
     "Pillow",
+    "PySocks"
 ]
 
-# Python 3 doesn't have pysqlite
-if sys.version[0] == "2":
-    install_requires += ["pysqlite"]
+# Default user (considers non virtualenv method)
+user = os.environ.get('SUDO_USER', os.environ['USER'])
 
 # Copy default config if not exists
 default = os.path.expanduser("~") + os.sep + '.rainbow_config.json'
 if not os.path.isfile(default):
     cmd = 'cp rainbowstream/colorset/config ' + default
     os.system(cmd)
+    cmd = 'chown ' + quote(user) + ' ' + default
+    os.system(cmd)
     cmd = 'chmod 777 ' + default
     os.system(cmd)
 
@@ -42,6 +50,7 @@ setup(name='rainbowstream',
           "Programming Language :: Python :: 3.2",
           "Programming Language :: Python :: 3.3",
           "Programming Language :: Python :: 3.4",
+          "Programming Language :: Python :: 3.5",
           "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
           "Topic :: Utilities",
           "License :: OSI Approved :: MIT License",