Skip to content

Commit

Permalink
use twine for pypi uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
vvb committed Apr 23, 2020
1 parent ce813b0 commit fcd4888
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ clean-build:
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
find . -name '*.bak' -exec rm -f {} +

clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
Expand Down Expand Up @@ -72,13 +73,11 @@ docs:
$(MAKE) -C docs html
$(BROWSER) docs/_build/html/index.html

release: clean
python setup.py sdist upload
python setup.py bdist_wheel upload
release: dist
twine upload dist/*

dist: clean
python setup.py sdist
python setup.py bdist_wheel
ls -l dist

install: clean
Expand Down

0 comments on commit fcd4888

Please sign in to comment.