syng/pyproject.toml

55 lines
957 B
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-shell = "syng.webclientmockup:main"
[tool.poetry.dependencies]
python = "^3.7"
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"
[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
[[tool.mypy.overrides]]
module = [
2023-11-01 18:25:47 +01:00
"aiohttp",
2022-11-27 14:53:25 +01:00
"pytube",
"minio",
"aiocmd",
"pyqrcodeng",
2022-11-29 21:44:31 +01:00
"socketio",
"pillow",
2022-12-05 23:01:50 +01:00
"PIL",
"yt_dlp",
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