diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2013-02-03 11:22:25 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2013-02-03 11:22:25 -0800 |
commit | 235050a67ccf0500b91de10e2f208c0456cbe43c (patch) | |
tree | 826b801b86d7e5168af491eb977fba0062b67ad0 | |
parent | 21cb9a2d86b2c0419444ea7c2e5e1c35a62b6373 (diff) | |
parent | 79dffacf4e4ec63a4db8869c03aae33bbbbfa0b5 (diff) |
Merge pull request #105 from clarete/master
tox structure
-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,6 +1,7 @@ *.pyc build/ dist/ +.tox/ paramiko.egg-info/ test.log docs/ 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 |