summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Andrews <anotherjesse@gmail.com>2011-04-24 13:11:49 -0700
committerJesse Andrews <anotherjesse@gmail.com>2011-04-24 13:11:49 -0700
commit628a9f9bec5a4fc6c0ae02b9225d1b99d702ca02 (patch)
tree19456629ba6a459499846f0ed3229d3ef5ccec42
parent1e86ecad53a4c8852dbcb9e5a678aee1f9594ac7 (diff)
httplib2 isn't used
-rw-r--r--README.md8
-rw-r--r--echo/echo/echo.py2
-rw-r--r--pip-requires1
3 files changed, 5 insertions, 6 deletions
diff --git a/README.md b/README.md
index 137df46a..8ce1e29a 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ Keystone is a proposed independent authentication service for [OpenStack](http:/
This initial proof of concept aims to address the current use cases in Swift and Nova which are:
-* ReST-based, token auth for Swift
+* REST-based, token auth for Swift
* many-to-many relationship between identity and tenant for Nova.
@@ -22,7 +22,6 @@ DEPENDENCIES:
* bottle
* eventlet
-* httplib2
* lxml
* Paste
* PasteDeploy
@@ -40,7 +39,6 @@ Install http://pypi.python.org/pypi/setuptools
sudo easy_install bottle
sudo easy_install eventlet
- sudo easy_install httplib2
sudo easy_install lxml
sudo easy_install paste
sudo easy_install pastedeploy
@@ -60,6 +58,7 @@ RUNNING KEYSTONE:
$ python setup.py build
$ sudo python setup.py install
+ $ cd keystone
$ python identity.py
@@ -67,7 +66,8 @@ RUNNING TEST SERVICE:
---------------------
$ python setup.py build
- $ sudo python setup.py install
+ $ sudo python setup.py install
+ $ cd echo/echo
$ python echo.py
diff --git a/echo/echo/echo.py b/echo/echo/echo.py
index 677e16f0..a600b0d0 100644
--- a/echo/echo/echo.py
+++ b/echo/echo/echo.py
@@ -18,7 +18,7 @@ from os import path
import eventlet
from eventlet import wsgi
-from httplib2 import Http
+#from httplib2 import Http
from lxml import etree
from paste.deploy import loadapp
try:
diff --git a/pip-requires b/pip-requires
index 3be5e46c..2388ec9b 100644
--- a/pip-requires
+++ b/pip-requires
@@ -1,6 +1,5 @@
bottle
eventlet
-httplib2
lxml
paste
pastedeploy