Commit f40214e4 authored by Eric Duminil's avatar Eric Duminil
Browse files

Makefile to push package

parent 209a7363
################################################################################
# Tasks for SektorSim pip package. #
################################################################################
help: ## Show this help.
@egrep -h '(\s##\s|^##\s)' $(MAKEFILE_LIST) | egrep -v '^--' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m %-35s\033[0m %s\n", $$1, $$2}'
tests: ## Run tests
python3 -m unittest discover src/
pytests: ## Run detailed tests
pytest -v
tests_installed_package: ## Tests the installed sektorsim package
pytest --pyargs sektorsim -v
clean: ## Remove pyc and pycache
find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
rm -f dist/*.tar.gz
rm -f dist/*.whl
#NOTE: .egg-info holds too much information
rm -rf src/sektorsim.egg-info/
build_package: clean pytests ## Build PyPI package
python3 -m pip install --upgrade build
python3 -m build
unzip -l dist/*.whl
_check_upload:
@echo -n "Are you sure you want to upload the package to PyPI? [y/N] " && read ans && [ $${ans:-N} = y ]
upload_package_to_testpypi: _check_upload build_package ## Upload PyPI package to https://test.pypi.org/
python3 -m twine upload --repository testpypi dist/* --verbose
upload_package_to_pypi: _check_upload build_package ## Upload PyPI package to https://pypi.org/
python3 -m twine upload dist/* --verbose
.PHONY: tests pytests
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment