Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #924 from hdiogenes/packaging-makefile
Browse files Browse the repository at this point in the history
Add Makefile for PyPI
  • Loading branch information
beraldoleal committed Jul 2, 2019
2 parents 3c38469 + c532993 commit 793e735
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Makefile
@@ -0,0 +1,10 @@
prepare:
pip3.6 install --upgrade pip setuptools wheel twine
clean:
rm -rf build/ dist/ *.egg-info/
build: clean
python3.6 setup.py sdist
testupload: build
twine upload -r pypitest dist/*
upload: build
twine upload dist/*

0 comments on commit 793e735

Please sign in to comment.