summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-07-11 17:57:03 -0400
committerrsiddharth <s@ricketyspace.net>2020-07-11 17:57:03 -0400
commit1670904a3796263e2dcda188435875e933e0bcf6 (patch)
treee04dea630ec5c58017573a1055156fb321ad9763 /Makefile
parentae62e33b2c15886ab1ceb5a7a60e6b055aec3daa (diff)
Makefile: add 'develop'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index cc4828f..c043404 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,11 @@ fmt:
black --include '*.py|markdown_link_style/*.py|tests/*.py' .
.PHONY: fmt
+develop:
+ python setup.py develop
+ pip install -r requirements.txt
+.PHONY: develop
+
build-dist:
@python setup.py sdist bdist_wheel
.PHONY: build-dist