From 596842e692ddaefb54d17ccd097fad1db6a000b0 Mon Sep 17 00:00:00 2001 From: Noortheen Raja Date: Tue, 5 Jul 2022 21:53:27 +0530 Subject: [PATCH] chore: pip install support having build-system config helps installing this without setup.py built --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 85191d8..8a6221b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,3 +79,7 @@ sentry = ["django-q-sentry"] [tool.isort] profile = "black" multi_line_output = 3 + +[build-system] +requires = ["poetry-core>=1.0.8"] +build-backend = "poetry.core.masonry.api"