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 03b0255 + acff593 commit ad39501Copy full SHA for ad39501
Makefile
@@ -42,7 +42,8 @@ coverage:
42
coverage xml
43
44
release: dist
45
- curl -F package=@`find dist -name "gmail_wrapper-*.whl"` $(PRIVATE_PYPI_UPLOAD_URL)
+ pip install twine
46
+ python -m twine upload --non-interactive --username __token__ --password ${PYPI_TOKEN} dist/*
47
48
dist: clean
49
python setup.py bdist_wheel --universal
setup.cfg
@@ -0,0 +1,2 @@
1
+[metadata]
2
+description-file = README.md
0 commit comments