Added PyPI targets.

This commit is contained in:
SET 2020-08-18 13:20:44 -03:00
parent c8c51affc5
commit e689480395
1 changed files with 10 additions and 1 deletions

View File

@ -94,4 +94,13 @@ gen_ref:
doc:
make -C docs
.PHONY: deb deb_clean lint test test_local gen_ref doc
py_build:
python3 setup.py sdist bdist_wheel
pypi_upload: py_clean py_build
python3 -m twine upload dist/*
py_clean:
@rm -rf .pybuild build dist kibot.egg-info
.PHONY: deb deb_clean lint test test_local gen_ref doc py_build pypi_upload py_clean