Skip to content

Commit

Permalink
Merge pull request #131 from noamkush/build-wheel
Browse files Browse the repository at this point in the history
Change Makefile to build and upload wheel
  • Loading branch information
fuhrysteve committed Jan 25, 2021
2 parents becfa24 + bc828d4 commit 3775948
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,21 @@ install_pandoc:
sudo apt install pandoc
pip install pypandoc

pypitest:
python setup.py sdist upload -r pypitest
sdist:
python setup.py sdist

pypi:
python setup.py sdist upload -r pypi
bdist_wheel:
pip install wheel
python setup.py bdist_wheel

twine:
pip install twine

pypitest: sdist bdist_wheel twine
twine upload -r pypitest dist/*

pypi: sdist bdist_wheel twine
twine upload -r pypi dist/*


clean_venv:
Expand Down

0 comments on commit 3775948

Please sign in to comment.