timetracker/pyproject.toml

36 lines
678 B
TOML
Raw Permalink Normal View History

2022-12-31 13:18:27 +00:00
[tool.poetry]
2023-01-03 12:26:30 +00:00
name = "timetracker"
2023-01-16 18:47:32 +00:00
version = "0.2.4"
2022-12-31 13:18:27 +00:00
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"
2023-01-07 20:09:47 +00:00
gunicorn = "^20.1.0"
uvicorn = "^0.20.0"
2023-01-15 12:02:02 +00:00
pandas = "^1.5.2"
matplotlib = "^3.6.3"
2022-12-31 13:18:27 +00:00
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
mypy = "^0.991"
pyyaml = "^6.0"
2023-01-05 10:52:50 +00:00
pytest = "^7.2.0"
2023-01-05 20:10:17 +00:00
django-extensions = "^3.2.1"
werkzeug = "^2.2.2"
djhtml = "^1.5.2"
2023-01-05 20:56:57 +00:00
djlint = "^1.19.11"
2023-01-15 22:39:52 +00:00
isort = "^5.11.4"
2022-12-31 13:18:27 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2023-01-05 10:52:50 +00:00
[tool.pytest.ini_options]
pythonpath = [
"src"
]