From d5ca8321e479cd44940cfb0c21db38a00ee522e4 Mon Sep 17 00:00:00 2001 From: Michel Oosterhof Date: Sat, 4 May 2019 20:34:16 +0400 Subject: [PATCH] add makefile (#1108) --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..28682c8e --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ + +# Dummy target `all` +all: + +# Note --aplication-import-names only works on Python3 +test: + flake8 --count --application-import-names cowrie --max-line-length=120 --statistics . + PYTHONPATH=src trial cowrie + +build: + python setup.py build sdist bdist + +docs: + make -C docs html