Files
PyVtT/pyproject.toml
Max P. 4e4389a03f
All checks were successful
Build and Publish / build-and-publish (push) Successful in 1m40s
chore(version): bump to 0.4.5
- Update project version from 0.4.4 to 0.4.5
- Prepares for the next release with minor updates
2025-05-18 20:41:38 +02:00

29 lines
710 B
TOML

[project]
name = "pyvtt"
version = "0.4.5"
description = "Python Voice to Text + LLMA"
authors = [{ name = "Max P.", email = "Mail@MPassarello.de" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pyqt5 (>=5.15.11,<6.0.0)",
"requests (>=2.32.3,<3.0.0)",
"pydantic (>=2.11.4,<3.0.0)",
]
[tool.poetry]
packages = [{ include = "pyvtt", from = "src" }]
include = ["pyvtt/assets/notification.wav"]
[tool.poetry.group.dev.dependencies]
twine = "^6.1.0"
[tool.poetry.scripts]
pyvtt-cmd = "pyvtt.send_cmd:main"
pyvtt-deamon = "pyvtt.voice_to_text_tray:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"