From 15b3cfbf4a4ed2c85cfd8eea3e67da87c0c37db6 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Sun, 25 May 2025 11:06:00 +0200 Subject: migrate worktime to kimai --- overlays/worktime/pyproject.toml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'overlays/worktime/pyproject.toml') diff --git a/overlays/worktime/pyproject.toml b/overlays/worktime/pyproject.toml index de4b9fd4..bb6934ac 100644 --- a/overlays/worktime/pyproject.toml +++ b/overlays/worktime/pyproject.toml @@ -1,23 +1,23 @@ -[tool.poetry] +[project] name = "worktime" -version = "0.1.0" -description = "" -authors = ["Gregor Kleen "] +version = "1.0.0" +requires-python = "~=3.12" +dependencies = [ + "pyxdg>=0.28,<0.29", + "python-dateutil>=2.9.0.post0,<3", + "uritools>=4.0.3,<5", + "requests>=2.32.3,<3", + "tabulate>=0.9.0,<0.10", + "toml>=0.10.2,<0.11", + "jsonpickle>=4.0.5,<5", +] -[tool.poetry.dependencies] -python = "^3.12" -pyxdg = "^0.28" -python-dateutil = "^2.9.0.post0" -uritools = "^4.0.3" -requests = "^2.32.3" -tabulate = "^0.9.0" -backoff = "^2.2.1" -toml = "^0.10.2" -jsonpickle = "^4.0.5" - -[tool.poetry.scripts] +[project.scripts] worktime = "worktime.__main__:main" [build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api" \ No newline at end of file +requires = ["hatchling"] +build-backend = "hatchling.build" + +[dependency-groups] +dev = [] -- cgit v1.2.3