2023-10-23 15:49:26 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "fluesterpost"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "App for transcribing audio files to text"
|
|
|
|
authors = ["Yandrik <me@yandrik.dev>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-10-29 19:36:25 +00:00
|
|
|
python = ">=3.11, <3.13"
|
2023-10-23 15:49:26 +00:00
|
|
|
flet = "^0.10.3"
|
|
|
|
faster-whisper = "^0.9.0"
|
|
|
|
pygame = "^2.5.2"
|
|
|
|
torch = "2.0.0"
|
2023-10-29 19:36:25 +00:00
|
|
|
requests = "^2.31.0"
|
|
|
|
validators = "^0.22.0"
|
|
|
|
pyinstaller = "^6.1.0"
|
|
|
|
pysdl2 = "^0.9.16"
|
|
|
|
pysdl2-dll = "^2.28.4"
|
|
|
|
pyaudio = "^0.2.13"
|
2023-10-23 15:49:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|