diff options
Diffstat (limited to 'overlays/worktime/pyproject.toml')
-rw-r--r-- | overlays/worktime/pyproject.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/overlays/worktime/pyproject.toml b/overlays/worktime/pyproject.toml new file mode 100644 index 00000000..f3fd3dfa --- /dev/null +++ b/overlays/worktime/pyproject.toml | |||
@@ -0,0 +1,22 @@ | |||
1 | [tool.poetry] | ||
2 | name = "worktime" | ||
3 | version = "0.1.0" | ||
4 | description = "" | ||
5 | authors = ["Gregor Kleen <gkleen@yggdrasil.li>"] | ||
6 | |||
7 | [tool.poetry.dependencies] | ||
8 | python = "^3.10" | ||
9 | pyxdg = "^0.28" | ||
10 | python-dateutil = "^2.8.2" | ||
11 | uritools = "^4.0.1" | ||
12 | requests = "^2.28.2" | ||
13 | configparser = "^5.3.0" | ||
14 | tabulate = "^0.9.0" | ||
15 | backoff = "^2.2.1" | ||
16 | |||
17 | [tool.poetry.scripts] | ||
18 | worktime = "worktime.__main__:main" | ||
19 | |||
20 | [build-system] | ||
21 | requires = ["poetry-core"] | ||
22 | build-backend = "poetry.core.masonry.api" \ No newline at end of file | ||