Files
sdb-back/pyproject.toml
JSC 7128ca727b Add new sound files and update dependencies
- Added various sound files to the soundboard, including insults, quotes, and sound effects.
- Introduced new dependencies: ffmpeg-python (version 0.2.0) and pydub (version 0.25.1) for audio processing.
- Updated the lock file to reflect the new packages and their respective versions.
- Added .gitignore files in the sounds/stream and sounds/temp directories to exclude unnecessary files.
2025-07-02 17:09:43 +02:00

36 lines
804 B
TOML

[project]
name = "sdb-backend"
version = "2.0.0"
description = "Soundboard V2 - Backend"
authors = [{ name = "quaik8", email = "quaik8@gmail.com" }]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"apscheduler==3.11.0",
"authlib==1.6.0",
"ffmpeg-python>=0.2.0",
"flask==3.1.1",
"flask-cors==6.0.1",
"flask-jwt-extended==4.7.1",
"flask-migrate==4.1.0",
"flask-sqlalchemy==3.1.1",
"pydub==0.25.1",
"python-dotenv==1.1.1",
"requests==2.32.4",
"werkzeug==3.1.3",
]
[dependency-groups]
dev = ["black==25.1.0", "pytest==8.4.1", "ruff==0.12.1"]
[tool.black]
line-length = 80
[tool.ruff]
line-length = 80
lint.select = ["ALL"]
lint.ignore = [
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
]