diff --git a/Makefile b/Makefile index 44ec700..4a6e934 100644 --- a/Makefile +++ b/Makefile @@ -17,3 +17,7 @@ image: ## Build image push: image ## Build and publish image podman push $(REPOSITORY):v$(SEMAPHORE_VERSION) + +dev: ## Setup local dev environment + poetry install --with dev + poetry run pre-commit install diff --git a/pyproject.toml b/pyproject.toml index 9bdafb2..5bd2be6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,3 @@ reorder-python-imports = "^3.12.0" pylint = "^3.1.0" pre-commit = "^3.6.2" pre-commit-hooks = "^4.5.0" - -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api"