Skip to content

Commit ad39501

Browse files
Merge pull request #19 from loadsmart/UploadPyPi
Switch release from Gemfury to PyPI
2 parents 03b0255 + acff593 commit ad39501

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ coverage:
4242
coverage xml
4343

4444
release: dist
45-
curl -F package=@`find dist -name "gmail_wrapper-*.whl"` $(PRIVATE_PYPI_UPLOAD_URL)
45+
pip install twine
46+
python -m twine upload --non-interactive --username __token__ --password ${PYPI_TOKEN} dist/*
4647

4748
dist: clean
4849
python setup.py bdist_wheel --universal

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

0 commit comments

Comments
 (0)