Skip to content

Commit

Permalink
Define [build-system] in pyproject.toml
Browse files Browse the repository at this point in the history
So that tools like build know how to build the package.
  • Loading branch information
stefanor committed Dec 15, 2021
1 parent 85baacc commit aa87d32
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,15 @@ pytest-cov = "^2.12.0"
black = { version = "^21.5b1", allow-prereleases = true }
isort = {extras = ["requirements_deprecated_finder"], version = "^5.8.0"}

[tool.poetry.extras]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = ["poetry.core.masonry.api"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.extras]
testing = ["django-redis", "croniter", "hiredis", "psutil", "iron-mq", "boto3", "pymongo"]
rollbar = ["django-q-rollbar"]
sentry = ["django-q-sentry"]

[tool.isort]
profile = "black"
multi_line_output = 3
multi_line_output = 3

0 comments on commit aa87d32

Please sign in to comment.