summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRoberto Berto <roberto.berto@under.com.br>2024-08-27 15:04:58 -0300
committerRoberto Berto <roberto.berto@under.com.br>2024-08-27 15:04:58 -0300
commit3d53e0bf7718ba9a66578dc35bbbc6d071c6d3a4 (patch)
tree9d74a30bcb8c210054dbfa9d3169dffdda188695 /Makefile
parent566cd146269384f345f2ef5faac9d06e72d0eacd (diff)
downloadpyvyos-3d53e0bf7718ba9a66578dc35bbbc6d071c6d3a4.tar.gz
pyvyos-3d53e0bf7718ba9a66578dc35bbbc6d071c6d3a4.zip
created Makefile
added dev/ to ignore changed whitespaces only in example.py
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..04ed05a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+.PHONE: help
+help:
+ @echo "build - build the package"
+ @echo "upload - upload the package to PyPI"
+
+.PHONY: build
+build:
+ source env/bin/activate
+ python -m build --sdist
+ python -m build --wheel
+
+upload:
+ source env/bin/activate
+ twine check dist/*
+ twine upload dist/*