diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2b80002 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +init: + pip install -r requirements.txt + +test: + python -m unittest discover + +.PHONY: all test clean diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..1cacac8 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +configobj ~= 5.0 +six ~= 1.10.0 +psycopg2 ~= 2.6 +MySQL-python ~= 1.2