summaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
index 877165e..476e9d4 100644
--- a/Pipfile
+++ b/Pipfile
@@ -11,6 +11,8 @@ click = "*"
pytest = "*"
black = "==21.5b1"
pylint = "*"
+twine = "*"
+build = "*"
[scripts]
alarmpy = "python alarmpy/alarmpy.py"
@@ -18,3 +20,5 @@ format = "black alarmpy"
formatcheck = "black --check alarmpy"
lint = "pylint -j 0 -d R,C alarmpy"
test = "pytest"
+build = "python -m build"
+upload = "twine upload dist/*"