Marietje 4.1: Addition of Django REST framework, Swagger, Dark mode and updates to Django and Bootstrap

This commit is contained in:
Lars van Rhijn
2023-09-14 19:55:51 +02:00
parent 379ababcc0
commit d1a1be7e2e
124 changed files with 4835 additions and 3490 deletions

39
pyproject.toml Normal file
View File

@ -0,0 +1,39 @@
[tool.poetry]
name = "marietjedjango"
version = "3.1.0"
description = "A music player for the south canteen of the Huygens building"
authors = ["Your Name <you@example.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
Django = "^4.2.5"
django-oauth-toolkit = "^2.3.0"
django-bootstrap5 = "^23.3"
fontawesomefree = "^6.4.2"
djangorestframework = "^3.14.0"
mysqlclient = "^2.2.0"
prometheus-client = "^0.17.1"
mutagen = "^1.47.0"
argon2-cffi = "^23.1.0"
uritemplate = "^4.1.1"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
flake8 = "^6.1.0"
[tool.black]
line-length = 119
target-version = ["py39"]
exclude = '''
/(
migrations
| marietje/marietje/settings
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"