Questions now have a created_by field linking to the user who created them. Users only see questions they own or that have been shared with them. Includes share dialog, user search, bulk sharing, and export/import respects ownership. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
743 B
TOML
33 lines
743 B
TOML
[project]
|
|
name = "trivia-thang"
|
|
version = "0.1.0"
|
|
description = "Flask + React trivia game web app with real-time WebSocket updates"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"flask>=3.0.0",
|
|
"flask-socketio>=5.3.0",
|
|
"flask-sqlalchemy>=3.1.0",
|
|
"flask-migrate>=4.0.0",
|
|
"flask-cors>=4.0.0",
|
|
"python-socketio>=5.11.0",
|
|
"eventlet>=0.36.0",
|
|
"pillow>=10.0.0",
|
|
"werkzeug>=3.0.0",
|
|
"celery>=5.3.0",
|
|
"redis>=5.0.0",
|
|
"yt-dlp>=2024.12.0",
|
|
"pydub>=0.25.0",
|
|
"authlib>=1.3.0",
|
|
"cryptography>=42.0.0",
|
|
"requests>=2.31.0",
|
|
"beautifulsoup4>=4.14.3",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.0",
|
|
"pytest-flask>=1.3.0",
|
|
"python-dotenv>=1.0.0",
|
|
]
|