syng/pyproject.toml

68 lines
1.2 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "syng"
version = "2.0.0"
description = ""
authors = ["Christoph Stahl <christoph.stahl@tu-dortmund.de>"]
license = "GPL3"
readme = "README.md"
include = ["syng/static"]
[tool.poetry.scripts]
syng-client = "syng.client:main"
syng-server = "syng.server:main"
syng-gui = "syng.gui:main"
syng-shell = "syng.webclientmockup:main"
[tool.poetry.dependencies]
python = "^3.8"
pytube = "*"
aiohttp = "^3.8.3"
python-socketio = "^5.7.2"
minio = "^7.1.12"
2022-11-14 09:18:29 +01:00
mutagen = "^1.46.0"
aiocmd = "^0.1.5"
2022-11-29 21:44:31 +01:00
pillow = "^9.3.0"
yt-dlp = "*"
2023-11-05 22:37:16 +01:00
customtkinter = "^5.2.1"
qrcode = "^7.4.2"
pymediainfo = "^6.1.0"
2023-11-12 10:10:52 +01:00
pyyaml = "^6.0.1"
async-tkinter-loop = "^0.9.2"
tkcalendar = "^1.6.1"
tktimepicker = "^2.0.2"
2023-12-18 18:56:03 +01:00
types-pyyaml = "^6.0.12.12"
types-pillow = "^10.1.0.2"
platformdirs = "^4.0.0"
[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
'''
2022-11-27 14:53:25 +01:00
[[tool.mypy.overrides]]
module = [
2022-12-05 23:01:50 +01:00
"yt_dlp",
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