From c4cf51275f24d706670c6b08b241ba739ef1c0ec Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Mon, 8 Jul 2024 16:36:32 +0200 Subject: [PATCH] Use poetry's latest config style and options --- pyproject.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ace9e58..aae846f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,8 @@ [build-system] -requires = ["poetry-core>=1.0.0"] +requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" + [tool.poetry] name = "ames-housing" version = "0.2.0.dev0" @@ -24,6 +25,9 @@ readme = "README.md" homepage = "https://github.com/webartifex/ames-housing" repository = "https://github.com/webartifex/ames-housing" +package-mode = false + + [tool.poetry.dependencies] python = "^3.8" jupyterlab = "^3.0.16" @@ -39,6 +43,6 @@ tabulate = "^0.8.9" tqdm = "^4.61.0" xlrd = "^2.0.1" -[tool.poetry.dev-dependencies] +[tool.poetry.group.dev.dependencies] black = "^21.5b1" pylint = "^2.8.2"