2023-03-02 14:32:15 +00:00
|
|
|
[tool.poetry]
|
2023-04-20 16:57:28 +00:00
|
|
|
name = "OnlyLegs"
|
2023-09-26 18:36:49 +00:00
|
|
|
version = "0.1.7"
|
2023-04-20 16:57:28 +00:00
|
|
|
repository = "https://github.com/Fluffy-Bean/onlylegs"
|
2023-03-02 14:32:15 +00:00
|
|
|
license = "MIT"
|
2023-04-19 17:44:45 +00:00
|
|
|
readme = "README.md"
|
2023-04-20 16:57:28 +00:00
|
|
|
description = "Gallery built for fast and simple image management"
|
|
|
|
authors = ["Fluffy-Bean <michal-gdula@protonmail.com>"]
|
2023-03-02 14:32:15 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-03-04 21:23:07 +00:00
|
|
|
python = "^3.8"
|
2023-05-02 10:33:05 +00:00
|
|
|
Flask = "^2.3.2"
|
2023-04-09 19:12:35 +00:00
|
|
|
Flask-Sqlalchemy = "^3.0.3"
|
|
|
|
Flask-Migrate = "^4.0.4"
|
2023-03-10 11:10:43 +00:00
|
|
|
Flask-Compress = "^1.13"
|
2023-05-29 10:39:03 +00:00
|
|
|
Flask-Caching = "1.10.1"
|
2023-03-10 11:10:43 +00:00
|
|
|
Flask-Assets = "^2.0"
|
2023-04-03 03:43:20 +00:00
|
|
|
Flask-Login = "^0.6.2"
|
2023-09-26 18:36:49 +00:00
|
|
|
python-dotenv = "1.0.0"
|
|
|
|
gunicorn = "^21.2.0"
|
2023-03-02 14:32:15 +00:00
|
|
|
pyyaml = "^6.0"
|
|
|
|
colorthief = "^0.2.1"
|
|
|
|
Pillow = "^9.4.0"
|
|
|
|
platformdirs = "^3.0.0"
|
2023-04-09 19:12:35 +00:00
|
|
|
libsass = "^0.22.0"
|
2023-04-06 14:42:23 +00:00
|
|
|
jsmin = "^3.0.1"
|
|
|
|
cssmin = "^0.2.0"
|
2023-04-19 17:18:49 +00:00
|
|
|
pylint = "^2.16.3"
|
2023-04-19 17:44:45 +00:00
|
|
|
black = "^23.3.0"
|
2023-05-29 10:39:03 +00:00
|
|
|
cachetools = "^5.3.0"
|
2023-09-26 12:43:00 +00:00
|
|
|
material-color-utilities-python = "^0.1.5"
|
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
|
|
|
|
# W0718: Exception are logged so we don't need to raise them
|
2023-04-01 17:40:42 +00:00
|
|
|
# W0621: Flask deals with this fine, so I dont care about it lol
|
|
|
|
# R0801: Duplicate code will be dealt with later
|
|
|
|
disable = "C0415, W0718, W0621, R0801"
|