From 91c5d8b11b507535937c33711adb97c8dd82376e Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 19 Mar 2013 03:03:01 -0700 Subject: [PATCH] Added python capability. --- more_python.txt | 43 +++++++++++++++++++++++++++++++++++++++++++ requirements.txt | 10 ++++++++++ setup.sh | 9 +++++++++ 3 files changed, 62 insertions(+) create mode 100644 more_python.txt create mode 100644 requirements.txt diff --git a/more_python.txt b/more_python.txt new file mode 100644 index 00000000..82721f7b --- /dev/null +++ b/more_python.txt @@ -0,0 +1,43 @@ +BeautifulSoup==3.2.1 +Django==1.4.2 +Flask==0.9 +Flask-SQLAlchemy==0.16 +Flask-Sass==0.9 +Jinja2==2.6 +PyYAML==3.10 +Pymacs==0.25 +SQLAlchemy==0.8.0b2 +Twisted==12.0.0 +Werkzeug==0.8.3 +bonjour-py==0.3 +dj-database-url==0.2.1 +django-socketio==0.3.5 +gevent==0.13.8 +gevent-socketio==0.2.1 +gevent-websocket==0.3.6 +greenlet==0.4.0 +gunicorn==0.17.2 +ipdb==0.7 +ipython==0.13.1 +macholib==1.4.2 +mock==1.0.1 +modulegraph==0.9.1 +numpy==1.6.1 +py2app==0.6.3 +pyOpenSSL==0.13 +pyflakes==0.6.1 +python-dateutil==1.5 +readline==6.2.4.1 +rope==0.9.4 +ropemacs==0.7 +ropemode==0.2 +simplejson==3.0.7 +sphinx-me==0.1.2 +testify==0.3.10 +tornado==2.4.1 +virtualenv==1.8.4 +websocket==0.2.1 +wsgiref==0.1.2 +xattr==0.6.2 +xlwt==0.7.4 +zope.interface==3.5.1 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..d604b972 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,10 @@ +ipdb==0.7 +ipython==0.13.1 +Pymacs==0.25 +virtualenv==1.8.4 +readline==6.2.4.1 +rope==0.9.4 +ropemacs==0.7 +ropemode==0.2 +pyflakes==0.6.1 +simplejson==3.0.7 diff --git a/setup.sh b/setup.sh index 0fc1ed58..f13c2954 100755 --- a/setup.sh +++ b/setup.sh @@ -39,6 +39,13 @@ function install_essentials() { esac } +function install_python_packages() { + sudo -v + source ~/.path + easy_install pip + pip install -r requirements.txt +} + sudo -v echo "Installing Dot Files." @@ -48,3 +55,5 @@ echo "Installing Tmux Configuration." tmux-powerline/generate_conf.sh echo "Installing oh-my-zsh." oh-my-zsh/install.sh +echo "Installing python dependencies." +install_python_packages