1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[project]
name = "worktime"
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",
"frozendict>=2.4.6",
]
[project.scripts]
worktime = "worktime.__main__:main"
worktime-ui = "worktime.__main__:ui"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = []
|