summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAngus Salkeld <asalkeld@redhat.com>2012-11-09 12:52:21 +1100
committerAngus Salkeld <asalkeld@redhat.com>2012-11-09 12:52:21 +1100
commit098f944eda406a2741c8d0f3546ea318421340bf (patch)
tree54634700aa10ae27191e91b3860f6d9960ff3a8f /tools
downloadpython-ceilometerclient-098f944eda406a2741c8d0f3546ea318421340bf.tar.gz
Initial Commit
Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/pip-requires4
-rw-r--r--tools/test-requires11
-rwxr-xr-xtools/with_venv.sh10
3 files changed, 25 insertions, 0 deletions
diff --git a/tools/pip-requires b/tools/pip-requires
new file mode 100644
index 0000000..a24c146
--- /dev/null
+++ b/tools/pip-requires
@@ -0,0 +1,4 @@
+argparse
+prettytable>=0.6,<0.7
+python-keystoneclient>=0.1.2
+warlock<2
diff --git a/tools/test-requires b/tools/test-requires
new file mode 100644
index 0000000..18557f0
--- /dev/null
+++ b/tools/test-requires
@@ -0,0 +1,11 @@
+distribute>=0.6.24
+
+mox
+nose
+nose-exclude
+nosexcover
+openstack.nose_plugin
+nosehtmloutput
+pep8==1.2
+setuptools-git>=0.4
+sphinx>=1.1.2
diff --git a/tools/with_venv.sh b/tools/with_venv.sh
new file mode 100755
index 0000000..e6e44f5
--- /dev/null
+++ b/tools/with_venv.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+command -v tox > /dev/null 2>&1
+if [ $? -ne 0 ]; then
+ echo 'This script requires "tox" to run.'
+ echo 'You can install it with "pip install tox".'
+ exit 1;
+fi
+
+tox -evenv -- $@