Refactor code structure for improved readability and maintainability

This commit is contained in:
pacnpal
2025-09-27 19:35:00 -04:00
parent bf365693f8
commit fdbbca2add
3 changed files with 427 additions and 170 deletions

View File

@@ -3,6 +3,7 @@ name = "thrillwiki"
version = "0.1.0"
description = "A Django + React application using reactivated.io"
authors = ["Your Name <your.email@example.com>"]
packages = [{include = "thrillwiki", from = "backend"}]
[tool.poetry.dependencies]
python = "^3.11"
@@ -10,7 +11,7 @@ Django = "^5.0"
djangorestframework = "^3.14.0"
django-cors-headers = "^4.3.1"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
isort = "^6.0.0"
mypy = "^1.8.0"
@@ -26,6 +27,7 @@ django_settings = "thrillwiki.settings"
[project]
name = "thrillwiki"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"Django>=5.0",
"djangorestframework>=3.14.0",