summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-07-11 17:56:47 -0400
committerrsiddharth <s@ricketyspace.net>2020-07-11 17:56:47 -0400
commitae62e33b2c15886ab1ceb5a7a60e6b055aec3daa (patch)
treeeb796cd3469647b85e3d2411676748093e2592d0
parentaba45fd74a8d9a68542e2e9c8ecf263f05e21881 (diff)
Makefile: Add 'fmt'.
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d51c384..cc4828f 100644
--- a/Makefile
+++ b/Makefile
@@ -21,6 +21,10 @@ test:
nosetests
.PHONY: test
+fmt:
+ black --include '*.py|markdown_link_style/*.py|tests/*.py' .
+.PHONY: fmt
+
build-dist:
@python setup.py sdist bdist_wheel
.PHONY: build-dist