aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile19
1 files changed, 5 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index 3d840bc..3da8c99 100755
--- a/Makefile
+++ b/Makefile
@@ -1,28 +1,19 @@
#!/usr/bin/make -f
- PE := pipenv run
- ST := $(PE) ./setup.py
- DNAME := dist/$(shell $(ST) --name)-$(shell $(ST) --version).tar.gz
+ DNAME := dist/$(shell ./setup.py --name)-$(shell ./setup.py --version).tar.gz
test tests:
- @$(PE) pytest -s -q
-
-prepare:
- @pipenv install --dev
-update:
- @pipenv update --dev
+ @pytest -s -q
docs:
- @$(ST) build_sphinx
-
-checkdocs:
- @$(ST) checkdocs
+ @./setup.py build_sphinx
dist: $(DNAME)
$(DNAME):
- @$(ST) sdist
+ @./setup.py sdist
upload: $(DNAME)
@twine upload $(DNAME)
.PHONY: test tests dist docs
+
# End of file.