Replace optional [poetry] extra with explicit poetry dependencies

Fixes #79
This commit is contained in:
2024-08-13 13:53:26 -04:00
parent 5c4d861230
commit 506aae0ccd
4 changed files with 38 additions and 48 deletions

View File

@@ -34,13 +34,10 @@ classifiers = [
[tool.poetry.plugins.tox]
poetry_installer = "tox_poetry_installer"
[tool.poetry.extras]
poetry = ["poetry", "cleo"]
[tool.poetry.dependencies]
python = "^3.7"
cleo = {version = ">=1.0,<3.0", optional = true}
poetry = {version = "^1.5.0", optional = true}
cleo = ">=1.0,<3.0"
poetry = "^1.5.0"
poetry-core = "^1.1.0"
tox = "^4"