35 lines
747 B
TOML
35 lines
747 B
TOML
[tool.poetry]
|
|
name = "timetracker"
|
|
version = "1.0.3"
|
|
description = "A simple time tracker."
|
|
authors = ["Lukáš Kucharczyk <lukas@kucharczyk.xyz>"]
|
|
license = "GPL"
|
|
readme = "README.md"
|
|
packages = [{include = "timetracker"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
django = "^4.1.4"
|
|
gunicorn = "^20.1.0"
|
|
uvicorn = "^0.20.0"
|
|
pandas = "^1.5.2"
|
|
matplotlib = "^3.6.3"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^22.12.0"
|
|
mypy = "^0.991"
|
|
pyyaml = "^6.0"
|
|
pytest = "^7.2.0"
|
|
django-extensions = "^3.2.1"
|
|
werkzeug = "^2.2.2"
|
|
djhtml = "^1.5.2"
|
|
djlint = "^1.19.11"
|
|
isort = "^5.11.4"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
timetracker-import = "common.import_data:import_from_file"
|