-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (35 loc) · 979 Bytes
/
pyproject.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "whisper-transcriber"
version = "0.1.0"
description = "A tool to transcribe audio files using OpenAI's Whisper API."
authors = ["Franck Ferman <contact@franckferman.fr>"]
license = "GNU AGPLv3"
readme = "README.md"
keywords = ["transcription", "audio", "OpenAI", "Whisper", "osint", "cyber-security"]
homepage = "https://github.com/franckferman/whisper-transcriber"
[tool.poetry.dependencies]
python = "^3.9"
openai = "0.28.0"
pydub = "^0.25.1"
typer = "^0.13.0"
tqdm = "^4.67.0"
colored = "^2.2.4"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
flake8 = "^4.0.1"
mypy = "^0.910"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
whisper-transcriber = "src.main:app"
[tool.black]
line-length = 88
target-version = ["py39"]
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 88
exclude = ["build", "dist"]
[tool.mypy]
plugins = []