From 80e5f0bc12e4f67fc7bb2818f60d04586fe7da96 Mon Sep 17 00:00:00 2001 From: Ryan Wolbeck Date: Tue, 13 Feb 2024 20:05:31 -0600 Subject: [PATCH] setup make to take pypi token and do clean up --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 07a7933..c636a58 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ package: poetry build publish: package - poetry publish + source .env && poetry config pypi-token.pypi $$PYPI_TOKEN && poetry publish lint: poetry run pre-commit run --hook-stage manual --all-files @@ -15,4 +15,4 @@ test: poetry run pytest --slow -v clean: - rm -r build dist ngboost.egg-info + rm -rf dist/*