2022-11-10 20:59:21 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "syng"
|
|
|
|
version = "2.0.0"
|
2024-09-19 00:04:44 +02:00
|
|
|
description = "A all-in-one webbased karaoke system with youtube support"
|
2022-11-10 20:59:21 +01:00
|
|
|
authors = ["Christoph Stahl <christoph.stahl@tu-dortmund.de>"]
|
|
|
|
license = "GPL3"
|
|
|
|
readme = "README.md"
|
2022-11-18 11:39:56 +01:00
|
|
|
include = ["syng/static"]
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2024-07-11 00:15:54 +02:00
|
|
|
syng = "syng.main:main"
|
2022-11-10 20:59:21 +01:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-07-09 20:13:31 +02:00
|
|
|
python = "^3.9"
|
2023-12-19 13:13:35 +01:00
|
|
|
python-socketio = "^5.10.0"
|
|
|
|
aiohttp = "^3.9.1"
|
2024-06-17 16:13:03 +02:00
|
|
|
yt-dlp = { version = "*"}
|
2023-12-19 13:13:35 +01:00
|
|
|
minio = { version = "^7.2.0", optional = true }
|
|
|
|
mutagen = { version = "^1.47.0", optional = true }
|
|
|
|
pillow = { version = "^10.1.0", optional = true}
|
|
|
|
customtkinter = { version = "^5.2.1", optional = true}
|
|
|
|
qrcode = { version = "^7.4.2", optional = true }
|
|
|
|
pymediainfo = { version = "^6.1.0", optional = true }
|
|
|
|
pyyaml = { version = "^6.0.1", optional = true }
|
|
|
|
tkcalendar = { version = "^1.6.1", optional = true }
|
|
|
|
tktimepicker = { version = "^2.0.2", optional = true }
|
|
|
|
platformdirs = { version = "^4.0.0", optional = true }
|
|
|
|
packaging = {version = "^23.2", optional = true}
|
2024-06-19 11:02:08 +02:00
|
|
|
alt-profanity-check = {version = "^1.4.1", optional = true}
|
2024-09-19 00:04:44 +02:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
types-pyyaml = "^6.0.12.12"
|
|
|
|
types-pillow = "^10.1.0.2"
|
|
|
|
mypy = "^1.10.0"
|
|
|
|
pylint = "^3.2.7"
|
|
|
|
|
2023-12-19 13:13:35 +01:00
|
|
|
|
|
|
|
[tool.poetry.extras]
|
2024-06-17 16:13:03 +02:00
|
|
|
client = ["minio", "mutagen", "pillow", "customtkinter", "qrcode",
|
|
|
|
"pymediainfo", "pyyaml", "tkcalendar", "tktimepicker", "platformdirs",
|
|
|
|
"packaging"]
|
2024-06-19 11:02:08 +02:00
|
|
|
server = ["alt-profanity-check"]
|
2022-11-10 20:59:21 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-11-14 09:18:29 +01:00
|
|
|
|
|
|
|
[tool.pyright]
|
|
|
|
exclude = [ ".venv" ]
|
|
|
|
venvPath = "."
|
|
|
|
venv = ".venv"
|
2022-11-27 14:53:25 +01:00
|
|
|
|
2023-12-18 18:56:03 +01:00
|
|
|
[tool.pylint."MESSAGES CONTROL"]
|
|
|
|
disable = '''too-many-lines,
|
|
|
|
too-many-ancestors
|
|
|
|
'''
|
|
|
|
|
2024-06-18 02:23:19 +02:00
|
|
|
[tool.mypy]
|
|
|
|
mypy_path = "typings"
|
|
|
|
|
2022-11-27 14:53:25 +01:00
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = [
|
2022-12-05 23:01:50 +01:00
|
|
|
"yt_dlp",
|
2024-07-09 21:25:52 +02:00
|
|
|
"yt_dlp.utils",
|
2023-12-18 18:56:03 +01:00
|
|
|
"pymediainfo",
|
|
|
|
"minio",
|
|
|
|
"qrcode",
|
|
|
|
"engineio",
|
|
|
|
"tkcalendar",
|
2023-12-18 19:44:21 +01:00
|
|
|
"customtkinter",
|
|
|
|
"aiohttp",
|
2023-12-18 19:45:34 +01:00
|
|
|
"tktimepicker",
|
|
|
|
"platformdirs"
|
2022-11-27 14:53:25 +01:00
|
|
|
]
|
|
|
|
ignore_missing_imports = true
|
2022-12-05 23:57:42 +01:00
|
|
|
|
2023-11-01 18:09:24 +01:00
|
|
|
[tool.ruff]
|
|
|
|
line-length = 100
|
2024-07-16 14:52:04 +02:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 100
|