Initial commit

This commit is contained in:
2022-12-31 14:18:27 +01:00
commit 6ae46c5d34
36 changed files with 1956 additions and 0 deletions

20
pyproject.toml Normal file
View File

@ -0,0 +1,20 @@
[tool.poetry]
name = "timelogger"
version = "0.1.0"
description = "A simple time tracker."
authors = ["Lukáš Kucharczyk <lukas@kucharczyk.xyz>"]
license = "GPL"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
django = "^4.1.4"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
mypy = "^0.991"
pyyaml = "^6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"