From 2bc22ef6f7e21701188eb97376d15c8f57a56881 Mon Sep 17 00:00:00 2001 From: "Carlos D. Garza" Date: Fri, 24 May 2013 17:51:31 -0500 Subject: Rename requires files to standard names. Rename tools/pip-requires to requirements.txt and tools/test-requires to test-requirements.txt. These are standard files, and tools in the general world are growing intelligence about them. Fixes: bug #1179008 Change-Id: I1a19f0c73ab48987e2ff0dade1a57a68b65f0a22 --- doc/source/installing.rst | 2 +- doc/source/setup.rst | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/source') diff --git a/doc/source/installing.rst b/doc/source/installing.rst index eeb4158b..dff824f1 100644 --- a/doc/source/installing.rst +++ b/doc/source/installing.rst @@ -49,7 +49,7 @@ Clone the keystone repository:: Install the dependencies to run keystone:: - sudo pip install -r tools/pip-requires + sudo pip install -r requirements.txt And at this point, you should have all the pieces you need to run keystone installed on your system. The following commands should be available on the diff --git a/doc/source/setup.rst b/doc/source/setup.rst index 35727222..cc6762c8 100644 --- a/doc/source/setup.rst +++ b/doc/source/setup.rst @@ -66,8 +66,8 @@ Installing dependencies Keystone maintains two lists of dependencies:: - tools/pip-requires - tools/test-requires + requirements.txt + test-requirements.txt The first is the list of dependencies needed for running keystone, the second list includes dependencies used for active development and testing of keystone itself. @@ -124,10 +124,10 @@ If you want to run keystone outside of a virtualenv, you can install the dependencies directly into your system from the requires files:: # Install the dependencies for running keystone - $ pip install -r tools/pip-requires + $ pip install -r requirements.txt # Install the dependencies for developing, testing, and running keystone - $ pip install -r tools/test-requires + $ pip install -r test-requirements.txt # Use python setup.py to link Keystone into python's site-packages $ python setup.py develop -- cgit