From 80fa0f3a5945a324c03e937a85dc7cbfe0beefa7 Mon Sep 17 00:00:00 2001 From: Orakaro Date: Mon, 4 Aug 2014 10:02:38 +0900 Subject: [PATCH] remove pysqlite from setup.py --- README.rst | 24 ++++++++---------------- docs/conf.py | 4 ++-- docs/index.rst | 22 ++++++---------------- setup.py | 7 +------ 4 files changed, 17 insertions(+), 40 deletions(-) diff --git a/README.rst b/README.rst index 5b524b1..02c9f42 100644 --- a/README.rst +++ b/README.rst @@ -10,7 +10,7 @@ Rainbow Stream Terminal-based Twitter Client. Realtime tweetstream, compose, search , favorite … and much more fun directly from terminal. -This package is built on the top of `Python Twitter Tool`_ and `Twitter API`_, +This package is built on the top of `Python Twitter Tool`_ and `Twitter API`_, can run on Python 2.7.x and 3.x . @@ -23,20 +23,6 @@ Showcase Install ------- -Prerequisite -^^^^^^^^^^^^ - -If you use Linux, you might need to install the ``python-dev`` package if you haven't already. -For debian-based distros, these can be installed with - -.. code:: bash - - sudo apt-get install python-dev - -Besides, Mac OSX Maverick with Xcode 5.1 has a well-known `clang unknown argument`_ problem with -the ``Pillow`` package installation - a dependency of this app. -If you are in this case, I recommend take a look at `Issue #10`_ and let me know if the workaround doesn't work for you. - The quick way ^^^^^^^^^^^^^ @@ -61,6 +47,12 @@ Use `virtualenv`_ source venv/bin/activate pip install rainbowstream +Troubleshooting +^^^^^^^^^^^^^^^ + +Mac OSX Maverick with Xcode 5.1 has a well-known `clang unknown argument`_ problem with +the ``Pillow`` package installation - a dependency of this app. +If you are in this case, I recommend take a look at `Issue #10`_ and let me know if the workaround doesn't work for you. Usage ----- @@ -83,7 +75,7 @@ You can try it with: rainbowstream -iot # Or rainbowstream --image-on-term -You also can change the config key ``IMAGE_ON_TERM`` to ``True`` inside the app +You also can change the config key ``IMAGE_ON_TERM`` to ``True`` inside the app to enable above feature (see `config management`_ section). In the first time you will be asked for authorization of Rainbow Stream diff --git a/docs/conf.py b/docs/conf.py index 7b5ea21..66ef9be 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ copyright = u'2014, Vu Nhat Minh' # built documents. # # The short X.Y version. -version = '0.6.0' +version = '0.6.1' # The full version, including alpha/beta/rc tags. -release = '0.6.0' +release = '0.6.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index fc3f121..ba3e38b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -16,22 +16,6 @@ can run on Python 2.7.x and 3.x . Install ------- -Prerequisite -^^^^^^^^^^^^ - -If you use Linux, you might need to install the ``python-dev`` package if you haven't already. -For debian-based distros, these can be installed with - -.. code:: bash - - sudo apt-get install python-dev - - -Besides, Mac OSX Maverick with Xcode 5.1 has a well-known `clang unknown argument`_ problem with -the ``Pillow`` package installation - a dependency of this app. -If you are in this case, I recommend take a look at `Issue #10`_ and let me know if the workaround doesn't work for you. - - The quick way ^^^^^^^^^^^^^ @@ -55,6 +39,12 @@ Use `virtualenv`_ source venv/bin/activate pip install rainbowstream +Troubleshooting +^^^^^^^^^^^^^^^ + +Mac OSX Maverick with Xcode 5.1 has a well-known `clang unknown argument`_ problem with +the ``Pillow`` package installation - a dependency of this app. +If you are in this case, I recommend take a look at `Issue #10`_ and let me know if the workaround doesn't work for you. Usage ----- diff --git a/setup.py b/setup.py index 9e5b65e..d225ebd 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,9 @@ from setuptools import setup, find_packages import os import os.path -import sys # Bumped version -version = '0.6.0' +version = '0.6.1' # Require install_requires = [ @@ -15,10 +14,6 @@ install_requires = [ "Pillow", ] -# Python 3 doesn't have pysqlite -if sys.version[0] == "2": - install_requires += ["pysqlite"] - # Copy default config if not exists default = os.path.expanduser("~") + os.sep + '.rainbow_config.json' if not os.path.isfile(default): -- 2.25.1