Initial Commit

Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
This commit is contained in:
Angus Salkeld
2012-11-09 12:52:21 +11:00
commit 098f944eda
15 changed files with 510 additions and 0 deletions

4
tools/pip-requires Normal file
View File

@@ -0,0 +1,4 @@
argparse
prettytable>=0.6,<0.7
python-keystoneclient>=0.1.2
warlock<2

11
tools/test-requires Normal file
View File

@@ -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

10
tools/with_venv.sh Executable file
View File

@@ -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 -- $@