forked from rtadewald/Transcripter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (28 loc) · 749 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (28 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[project]
name = "transcripter"
version = "0.1.0"
description = "Transcrição e análise de áudios e vídeos via terminal"
authors = [{name = "Rodrigo Soares Tadewald", email = "rodrigo.tadewald@gmail.com"}]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"agno>=1.7.5",
"cython>=3.1.2",
"ffmpeg-python>=0.2.0",
"google-cloud-speech>=2.33.0",
"groq>=0.30.0",
"ipykernel>=6.30.0",
"keyboard>=0.13.5",
"openai>=1.97.1",
"pyannote-audio>=3.3.2",
"pynput>=1.8.1",
"python-dotenv>=1.1.1",
"pytubefix>=9.4.1",
"questionary>=2.1.0",
"rich>=14.0.0",
"sounddevice>=0.5.2",
"soundfile>=0.13.1",
"tinydb>=4.8.2",
]
[project.scripts]
transcripter = "transcripter.main:main"