Bumped version 1.5.2
[rainbowstream.git] / setup.py
index 0c15d7af59d2411b877e291d82861d096ace51e1..fe816d19ecf41cfd7334a098001bf7fe08ba5a68 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,28 +1,39 @@
 from setuptools import setup, find_packages
-import os, os.path, sys
+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.5.5'
+version = '1.5.2'
 
 # Require
 install_requires = [
     "python-dateutil",
+    "arrow",
     "requests",
     "pyfiglet",
-    "SQLAlchemy",
     "twitter",
     "Pillow",
+    "PySocks",
+    "pocket"
 ]
 
-# Python 3 doesn't hava pysqlite
-if sys.version[0] == "2":
-    install_requires += ["pysqlite"]
+# Default user (considers non virtualenv method)
+user = os.environ.get('SUDO_USER', os.environ.get('USER', None))
 
 # 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)
+    if user:
+        cmd = 'chown ' + quote(user) + ' ' + default
+        os.system(cmd)
     cmd = 'chmod 777 ' + default
     os.system(cmd)
 
@@ -41,6 +52,9 @@ setup(name='rainbowstream',
           "Programming Language :: Python :: 3.2",
           "Programming Language :: Python :: 3.3",
           "Programming Language :: Python :: 3.4",
+          "Programming Language :: Python :: 3.5",
+          "Programming Language :: Python :: 3.6",
+          "Programming Language :: Python :: 3.7",
           "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
           "Topic :: Utilities",
           "License :: OSI Approved :: MIT License",
@@ -54,6 +68,7 @@ setup(name='rainbowstream',
       include_package_data=True,
       zip_safe=True,
       install_requires=install_requires,
+      long_description_content_type='text/markdown',
       entry_points="""
       # -*- Entry points: -*-
       [console_scripts]