We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27f7e00 + e49845f commit bc700d4Copy full SHA for bc700d4
Makefile
@@ -44,6 +44,12 @@ upgrade-deps: $(BUILD_VENV)/bin/pip-compile
44
build: $(BUILD_VENV)/bin/wheel $(BUILD_VENV)/bin/twine
45
$(BUILD_PY) setup.py sdist bdist_wheel
46
47
+.PHONY: publish
48
+publish:
49
+ username=$$(gopass show dataplatform/websites/pypi.org/origo-dataplatform username) &&\
50
+ password=$$(gopass show --password dataplatform/websites/pypi.org/origo-dataplatform) &&\
51
+ python -m twine upload -u $$username -p $$password dist/*
52
+
53
###
54
# Python build dependencies
55
##
0 commit comments