@@ -0,0 +1,41 @@
+#
+# This file is part of `debops`.
+# Based on prior work from `gitflow`
+#   Copyright (c) 2010-2011 Vincent Driessen
+#   Copyright (c) 2012-2015 Hartmut Goebel
+# Distributed under a BSD-like license.
+#
+
+all: cover
+
+clean: clean-files
+
+clean-files:
+	find . -name '*.py[co]' -delete
+	rm -rf *.egg *.egg-info
+	rm -f nosetests.xml *.egg-lnk pip-log.txt
+
+clean-all: clean-tox clean
+	rm -rf build dist .coverage
+
+clean-tox:
+	rm -rf .tox
+
+xunit-test:
+	nosetests --with-xunit
+
+test:
+	nosetests --with-spec --spec-color
+
+test-dist:
+	PIP_DOWNLOAD_CACHE=~/Projects/pkgrepo/pkgs
+	tox
+
+cover:
+	nosetests --with-coverage3 --cover-package=gitflow --with-spec --spec-color
+
+dump-requirements:
+	pip freeze -l > .requirements
+
+install-requirements:
+	pip install -r .requirements