2022-04-24 16:57:44 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "lw1"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["Lukas Winkler <git@lw1.at>"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.9"
|
|
|
|
Jinja2 = "^3.1.1"
|
|
|
|
toml = "^0.10.2"
|
2024-06-30 18:38:47 +02:00
|
|
|
watchfiles = "^0.22.0"
|
2023-03-27 23:39:40 +02:00
|
|
|
python-slugify = "^8.0.0"
|
2022-04-24 16:57:44 +02:00
|
|
|
PyYAML = "^6.0"
|
|
|
|
Markdown = "^3.3.6"
|
|
|
|
Pygments = "^2.11.2"
|
2024-06-30 18:38:47 +02:00
|
|
|
markdown-katex = "^202406.1035"
|
2022-04-24 16:57:44 +02:00
|
|
|
Babel = "^2.10.1"
|
2024-01-26 23:23:23 +01:00
|
|
|
redis = "^5.0.1"
|
2022-04-24 16:57:44 +02:00
|
|
|
hiredis = "^2.0.0"
|
2024-01-26 23:23:23 +01:00
|
|
|
lxml-stubs = "^0.5.1"
|
2023-03-27 23:39:40 +02:00
|
|
|
thumbhash-python = {git = "https://github.com/Findus23/thumbhash-python.git"}
|
2024-01-26 23:23:23 +01:00
|
|
|
pillow = "^10.0.0"
|
2022-04-24 16:57:44 +02:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
lw1 = 'lw1.main:main'
|
|
|
|
|
|
|
|
|
2023-03-27 23:39:40 +02:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-06-30 18:38:47 +02:00
|
|
|
ruff = "^0.5.0"
|
2023-03-27 23:39:40 +02:00
|
|
|
|
2022-04-24 16:57:44 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
2023-03-27 23:39:40 +02:00
|
|
|
[tool.ruff]
|
|
|
|
line-length = 110
|