dockercloud

This commit is contained in:
tifayuki 2016-01-14 13:12:51 +01:00
commit 2d9586a8a1
41 changed files with 2701 additions and 2 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
test:prepare
venv/bin/python setup.py test
clean:
rm -rf venv build dist *.egg-info
find . -name '*.pyc' -delete
prepare:clean
set -ex
virtualenv venv
venv/bin/pip install mock
venv/bin/pip install -r requirements.txt
venv/bin/python setup.py install