diff options
| author | Carlos D. Garza <carlos.garza@rackspace.com> | 2013-05-24 18:37:26 -0500 |
|---|---|---|
| committer | Carlos D. Garza <carlos.garza@rackspace.com> | 2013-05-24 18:37:26 -0500 |
| commit | 1a38113ca7e3f939dae3fe46d3c8032bcc6c7b96 (patch) | |
| tree | 6c2ce6fcb7a980afa76f1b34759d475d1d4e045e /tools | |
| parent | 17db3b2d17e5aa40e96759b150b3597c6ce5faf4 (diff) | |
| download | python-keystoneclient-1a38113ca7e3f939dae3fe46d3c8032bcc6c7b96.tar.gz | |
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.
Change-Id: If5c7080fea7c5ca5935b3c064e368cb837a9c16b
Fixes: bug #1179008
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/install_venv.py | 4 | ||||
| -rw-r--r-- | tools/pip-requires | 9 | ||||
| -rw-r--r-- | tools/test-requires | 20 |
3 files changed, 2 insertions, 31 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py index 6d6d2b3..1ccd818 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -101,8 +101,8 @@ def print_help(): def main(argv): root = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) venv = os.path.join(root, '.venv') - pip_requires = os.path.join(root, 'tools', 'pip-requires') - test_requires = os.path.join(root, 'tools', 'test-requires') + pip_requires = os.path.join(root, 'requirements.txt') + test_requires = os.path.join(root, 'test-requirements.txt') py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1]) project = 'python-keystoneclient' install = install_venv.InstallVenv(root, venv, pip_requires, test_requires, diff --git a/tools/pip-requires b/tools/pip-requires deleted file mode 100644 index 62c0d20..0000000 --- a/tools/pip-requires +++ /dev/null @@ -1,9 +0,0 @@ -d2to1>=0.2.10,<0.3 -pbr>=0.5,<0.6 -argparse -iso8601>=0.1.4 -prettytable>=0.6,<0.8 -requests>=0.8.8 -simplejson -six -oslo.config>=1.1.0 diff --git a/tools/test-requires b/tools/test-requires deleted file mode 100644 index a9c0303..0000000 --- a/tools/test-requires +++ /dev/null @@ -1,20 +0,0 @@ -distribute>=0.6.24 - -# Install bounded pep8/pyflakes first, then let flake8 install -pep8==1.4.5 -pyflakes==0.7.2 -flake8==2.0 -hacking>=0.5.3,<0.6 - -coverage -fixtures -keyring -mock -mox -pycrypto -sphinx>=1.1.2 -testrepository>=0.0.13 -testtools>=0.9.22 -WebOb>=1.0.8 - -Babel |
