summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-05-18 07:17:04 -0700
committerMonty Taylor <mordred@inaugust.com>2013-05-25 08:23:12 +0200
commit3bbdcda9d23b54079733ff6f06000cf311eff629 (patch)
tree0f420f367fb6e7c40efe9a826a940ca2ff448c5e /tools
parent9d4db6f740fe00f50c77920b5ef7a4fbd08d181f (diff)
downloadpython-novaclient-3bbdcda9d23b54079733ff6f06000cf311eff629.tar.gz
Rename requires files to standard names.
The python community groks requirements.txt and test-requirements.txt as reasonably standard files. We should use those filenames to make our information more discoverable. Fixes bug 1179008 Change-Id: I50a7c46f880e4257fa31d7d322d7bf70b0f5d3a6
Diffstat (limited to 'tools')
-rw-r--r--tools/install_venv.py4
-rw-r--r--tools/pip-requires7
-rw-r--r--tools/test-requires16
3 files changed, 2 insertions, 25 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 5742f7e1..8dbab463 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -32,8 +32,8 @@ import platform
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])
diff --git a/tools/pip-requires b/tools/pip-requires
deleted file mode 100644
index f7deffed..00000000
--- a/tools/pip-requires
+++ /dev/null
@@ -1,7 +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
-simplejson
diff --git a/tools/test-requires b/tools/test-requires
deleted file mode 100644
index 8da41c8f..00000000
--- a/tools/test-requires
+++ /dev/null
@@ -1,16 +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
-discover
-fixtures>=0.3.12
-keyring
-mock
-sphinx>=1.1.2
-testrepository>=0.0.13
-testtools>=0.9.26