diff --git a/pyproject.toml b/pyproject.toml index 754d79b..ed07833 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,11 @@ classifiers=[ ] authors = [{name="Karl Voit", email="tools@Karl-Voit.at"}] license = {file = "LICENSE.txt"} +dependencies = [ + "clint>=0.5.1", + "colorama>=0.4.6", + "pyreadline3>=3.5.4", +] [project.urls] Homepage = "https://github.com/novoid/filetags" @@ -23,21 +28,3 @@ Issues = "https://github.com/novoid/filetags/issues" [project.scripts] filetags="filetags:main" -[tool.poetry.scripts] -filetags="filetags:main" - -[tool.poetry] -name = "filetags" -authors = ["Karl Voit "] -license = "GPL v3" -readme = "README.org" - -[tool.poetry.dependencies] -python = "^3.9" -clint = "^0.5.1" -colorama = "^0.4.6" -pyreadline3 = "^3.4.1" - -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api"