diff --git a/justfile b/justfile
new file mode 100644
index 0000000000000000000000000000000000000000..88127a679601f1f66da13b4df0a1ccc4bcbd484c
--- /dev/null
+++ b/justfile
@@ -0,0 +1,13 @@
+# Just file: https://github.com/casey/just
+
+test:
+    pytest
+
+release version: test
+	git tag {{version}}
+	git checkout {{version}}
+	git push --tags -f
+	python3 setup.py sdist
+	twine upload dist/pystencils_autodiff-{{version}}.tar.gz
+	git checkout master
+