1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/pyproject.toml

43 lines
1 KiB
TOML
Raw Normal View History

2021-08-22 20:10:29 +02:00
[tool.poetry]
name = "rpgnotes"
version = "0.1.0"
description = ""
authors = ["Lukas Winkler <git@lw1.at>"]
2024-03-15 18:26:52 +01:00
package-mode = false
2021-08-22 20:10:29 +02:00
[tool.poetry.dependencies]
2023-12-16 17:16:58 +01:00
python = "^3.11"
Django = {extras = ["argon2"], version = "^5.0.0"}
2024-05-19 21:50:51 +02:00
psycopg = {extras = ["c", "pool"], version = "^3.1.19"}
2021-08-22 20:10:29 +02:00
django-simple-history = "^3.0.0"
2024-05-19 21:39:14 +02:00
django-bootstrap5 = "^24.2"
2021-08-22 20:10:29 +02:00
Markdown = "^3.3.4"
2023-02-03 20:41:31 +01:00
bleach = "^6.0.0"
2021-08-22 20:10:29 +02:00
bleach-allowlist = "^1.0.3"
2023-07-09 18:43:41 +02:00
Pillow = "^10.0.0"
2021-08-22 20:10:29 +02:00
sorl-thumbnail = "^12.7.0"
libsass = "^0.23.0"
2023-04-12 22:38:30 +02:00
django-debug-toolbar = "^4.0.0"
2021-08-29 00:20:02 +02:00
django-tenants = "^3.3.2"
2023-09-18 16:39:39 +02:00
django-tenant-users = "^1.2.0"
2023-07-31 19:46:30 +02:00
django-axes = {extras = ["ipware"], version = "^6.1.0"}
2021-09-05 22:04:14 +02:00
django-registration = "^3.2"
2021-09-06 21:10:55 +02:00
django-csp = "^3.7"
2021-09-07 14:16:14 +02:00
django-redis = "^5.0.0"
2024-05-19 21:39:14 +02:00
gunicorn = "^22.0.0"
2021-09-07 15:57:08 +02:00
setproctitle = "^1.2.2"
2021-09-07 20:03:23 +02:00
django-extensions = "^3.1.3"
2024-05-19 21:39:14 +02:00
sentry-sdk = "^2.2.0"
django-tree-queries = "^0.19.0"
2021-10-15 20:10:50 +02:00
django-jinja = "^2.9.1"
2023-04-12 22:38:30 +02:00
bpython = "^0.24"
2021-08-22 20:10:29 +02:00
[tool.poetry.dev-dependencies]
2024-05-19 21:39:14 +02:00
Werkzeug = "^3.0.3"
watchdog = "^4.0.0"
2023-02-03 20:41:31 +01:00
bpython = "^0.24.0"
2021-08-22 20:10:29 +02:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"