diff options
Diffstat (limited to 'libs/plugin_python/pyproject.toml')
| -rw-r--r-- | libs/plugin_python/pyproject.toml | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/libs/plugin_python/pyproject.toml b/libs/plugin_python/pyproject.toml index 71bb9df..b93d584 100644 --- a/libs/plugin_python/pyproject.toml +++ b/libs/plugin_python/pyproject.toml @@ -1,20 +1,23 @@ -[tool.poetry] +[project] name = "modorganizer-plugin_python" version = "3.0.0" description = "" -authors = ["Mikaël Capelle <capelle.mikael@gmail.com>"] +authors = [{ name = "Mikaël Capelle", email = "capelle.mikael@gmail.com" }] +requires-python = ">=3.12,<3.13" -[tool.poetry.dependencies] -python = "^3.12" +[dependency-groups] +dev = [ + "pyright>=1.1.369,<2", + "ruff>=0.2.1,<1", + "poethepoet>=0.23.0,<1", + "mobase-stubs>=2.5.1a0", + "pyqt6>=6.7.0,<7", + "pytest>=8.2.2,<9", + "pybind11-stubgen>=2.5.1,<3", +] -[tool.poetry.group.dev.dependencies] -pyright = "^1.1.369" -ruff = "^0.2.1" -poethepoet = "^0.23.0" -mobase-stubs = { version = "^2.5.1a0", allow-prereleases = true } -pyqt6 = "^6.7.0" -pytest = "^8.2.2" -pybind11-stubgen = "^2.5.1" +[tool.uv] +prerelease = "allow" [tool.poe.tasks] format-imports = "ruff check --select I tests typings --fix" |
