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