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

33 lines
798 B
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>"]
[tool.poetry.dependencies]
python = "^3.9"
2021-08-29 16:45:40 +02:00
Django = {extras = ["argon2"], version = "^3.2.6"}
2021-08-22 20:10:29 +02:00
psycopg2 = "^2.9.1"
django-simple-history = "^3.0.0"
django-bootstrap5 = "^2.1.2"
Markdown = "^3.3.4"
bleach = "^4.0.0"
bleach-allowlist = "^1.0.3"
Pillow = "^8.3.1"
sorl-thumbnail = "^12.7.0"
libsass = "^0.21.0"
2021-08-28 19:52:07 +02:00
django-debug-toolbar = "^3.2.2"
2021-08-29 00:20:02 +02:00
django-tenants = "^3.3.2"
django-tenant-users = {git = "https://github.com/Corvia/django-tenant-users.git"}
2021-09-05 18:52:26 +02:00
django-axes = "^5.23.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"
2021-09-07 15:53:25 +02:00
gunicorn = "^20.1.0"
2021-08-22 20:10:29 +02:00
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"