summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorCarlos D. Garza <carlos.garza@rackspace.com>2013-05-24 17:51:31 -0500
committerCarlos D. Garza <carlos.garza@rackspace.com>2013-05-24 17:55:05 -0500
commit2bc22ef6f7e21701188eb97376d15c8f57a56881 (patch)
tree0e90773ea7454a3799c2391f3911280bbd083f51 /doc
parentaf4e96986f6ee45e9e4ccac0b143902362a1a676 (diff)
downloadkeystone-2bc22ef6f7e21701188eb97376d15c8f57a56881.tar.gz
keystone-2bc22ef6f7e21701188eb97376d15c8f57a56881.tar.xz
keystone-2bc22ef6f7e21701188eb97376d15c8f57a56881.zip
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
Diffstat (limited to 'doc')
-rw-r--r--doc/source/installing.rst2
-rw-r--r--doc/source/setup.rst8
2 files changed, 5 insertions, 5 deletions
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