From 10a9d3c650ff786ad2c66dce94071ad154addf27 Mon Sep 17 00:00:00 2001 From: Vishvananda Ishaya Date: Sun, 24 Apr 2011 12:46:32 -0700 Subject: Added pip-requires and updated readme to include missing deps --- README.md | 21 ++++++++++++++------- pip-requires | 10 ++++++++++ 2 files changed, 24 insertions(+), 7 deletions(-) create mode 100644 pip-requires diff --git a/README.md b/README.md index 2a9a60fa..ea1b43d9 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,15 @@ SERVICES: DEPENDENCIES: ------------- -* SQLite3 * Paste * PasteDeploy * PasteScript +* SQLAlchemy +* SQLite3 * bottle -* simplejson * eventlet +* lxml +* simplejson * webob @@ -35,15 +37,20 @@ SETUP: Install http://pypi.python.org/pypi/setuptools + sudo easy_install bottle + sudo easy_install eventlet + sudo easy_install lxml sudo easy_install paste sudo easy_install pastedeploy sudo easy_install pastescript - sudo easy_install bottle + sudo easy_install pysqlite sudo easy_install simplejson - sudo easy_install eventlet + sudo easy_install sqlalchemy sudo easy_install webob - sudo easy_install pysqlite - + +Or using pip: + + sudo pip install -r pip-requires RUNNING KEYSTONE: @@ -85,7 +92,7 @@ To Test Identity Service: DATABASE SCHEMA --------------- - + CREATE TABLE groups(group_id varchar(255),group_desc varchar(255),tenant_id varchar(255),FOREIGN KEY(tenant_id) REFERENCES tenant(tenant_id)); CREATE TABLE tenants(tenant_id varchar(255), tenant_desc varchar(255), tenant_enabled INTEGER, PRIMARY KEY(tenant_id ASC)); CREATE TABLE token(token_id varchar(255),user_id varchar(255),expires datetime,tenant_id varchar(255)); diff --git a/pip-requires b/pip-requires new file mode 100644 index 00000000..2388ec9b --- /dev/null +++ b/pip-requires @@ -0,0 +1,10 @@ +bottle +eventlet +lxml +paste +pastedeploy +pastescript +pysqlite +simplejson +sqlalchemy +webob -- cgit