diff options
author | Lincoln de Sousa <lincoln@comum.org> | 2012-11-06 18:02:10 -0500 |
---|---|---|
committer | Lincoln de Sousa <lincoln@comum.org> | 2012-11-06 18:02:10 -0500 |
commit | 79dffacf4e4ec63a4db8869c03aae33bbbbfa0b5 (patch) | |
tree | c7dd0a9f6e62d1a424d72dafcd8f6917d527ff0f | |
parent | 06d987c362e75a5d86c411c20932a3818fb4fa40 (diff) |
Adding tox info (and a requirements file)
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | requirements.txt | 2 | ||||
-rw-r--r-- | tox.ini | 6 |
3 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,6 @@ *.pyc build/ dist/ +.tox/ paramiko.egg-info/ test.log diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..75112a23 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +pycrypto +tox diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..6cb80012 --- /dev/null +++ b/tox.ini @@ -0,0 +1,6 @@ +[tox] +envlist = py25,py26,py27 + +[testenv] +commands = pip install --use-mirrors -q -r requirements.txt + python test.py |