syng/pyproject.toml

80 lines
1.8 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "syng"
version = "2.0.0"
description = "A all-in-one webbased karaoke system with youtube support"
authors = ["Christoph Stahl <christoph.stahl@tu-dortmund.de>"]
license = "GPL3"
readme = "README.md"
include = ["syng/static"]
[tool.poetry.scripts]
2024-07-11 00:15:54 +02:00
syng = "syng.main:main"
[tool.poetry.dependencies]
2024-07-09 20:13:31 +02:00
python = "^3.9"
python-socketio = "^5.10.0"
aiohttp = "^3.9.1"
yt-dlp = { version = "*"}
minio = { version = "^7.2.0", optional = true }
mutagen = { version = "^1.47.0", optional = true }
pillow = { version = "^10.1.0", optional = true}
qrcode = { version = "^7.4.2", optional = true }
pymediainfo = { version = "^6.1.0", optional = true }
pyyaml = { version = "^6.0.1", optional = true }
platformdirs = { version = "^4.0.0", optional = true }
packaging = {version = "^23.2", optional = true}
alt-profanity-check = {version = "^1.4.1", optional = true}
2024-09-22 13:02:09 +02:00
pyqt6 = {version = "^6.7.1", optional = true}
[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"
[tool.poetry.extras]
2024-09-22 13:02:09 +02:00
client = ["minio", "mutagen", "pillow", "qrcode",
"pymediainfo", "pyyaml", "platformdirs",
"packaging", "pyqt6"]
server = ["alt-profanity-check"]
[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
'''
[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",
"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
[tool.ruff]
line-length = 100
2024-07-16 14:52:04 +02:00
[tool.black]
line-length = 100