2023-03-02 14:32:15 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "onlylegs"
|
2023-03-08 13:36:35 +00:00
|
|
|
version = "23.03.09"
|
2023-03-02 14:32:15 +00:00
|
|
|
description = "Gallery built for fast and simple image management"
|
|
|
|
authors = ["Fluffy-Bean <michal-gdula@protonmail.com>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = ".github/README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-03-04 21:23:07 +00:00
|
|
|
python = "^3.8"
|
2023-03-02 14:32:15 +00:00
|
|
|
Flask = "^2.2.2"
|
|
|
|
flask-compress = "^1.13"
|
2023-03-08 09:01:20 +00:00
|
|
|
flask-caching = "^2.0.2"
|
2023-03-02 17:00:54 +00:00
|
|
|
gunicorn = "^20.1.0"
|
2023-03-02 14:32:15 +00:00
|
|
|
python-dotenv = "^0.21.0"
|
|
|
|
pyyaml = "^6.0"
|
|
|
|
libsass = "^0.22.0"
|
|
|
|
colorthief = "^0.2.1"
|
|
|
|
Pillow = "^9.4.0"
|
|
|
|
platformdirs = "^3.0.0"
|
2023-03-03 00:26:46 +00:00
|
|
|
SQLAlchemy = "^2.0.3"
|
2023-03-04 21:15:53 +00:00
|
|
|
pylint = "^2.16.3"
|
2023-03-02 14:32:15 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2023-03-04 13:45:26 +00:00
|
|
|
|
|
|
|
[tool.pylint.messages_control]
|
|
|
|
# C0415: Flask uses it to register blueprints
|
|
|
|
# W1401: Anomalous backslash in string used in __init__
|
|
|
|
# W0718: Exception are logged so we don't need to raise them
|
|
|
|
disable = "C0415, W1401, W0718"
|