Files
vlchan/pyproject.toml
2025-10-09 16:31:57 +11:00

25 lines
564 B
TOML

[tool.poetry]
name = "vlchan"
version = "0.1.0"
description = "VLC video player with synchan timecode synchronization"
authors = ["Justin Lin <wancat@wancat.cc>"]
readme = "README.md"
packages = [
{ include = "vlchan" }
]
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
python-vlc = "^3.0.20123"
reactivex = "^4.0.4"
python-socketio = {extras = ["client"], version = "^5.14.1"}
requests = "^2.32.5"
[tool.poetry.group.dev.dependencies]
mypy = "^1.17.1"
ruff = "^0.12.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"