-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.33 KB
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
44
45
46
# Configuration: Change Pytorch version here (e.g., cu121, cu118, cu124, cu128, cu129)
# Available versions: https://download.pytorch.org/whl/
[project]
name = "whisper-voice-transcription"
version = "0.1.0"
description = "A Python-based audio transcription tool (STT) using OpenAI's Whisper model with configurable output formats and automated file organization."
authors = [
{ name = "Ariful Islam", email = "ariful@firora.com" }
]
license = { text = "MIT" }
keywords = ["whisper", "transcription", "speech-to-text", "audio", "ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"gradio>=5.44.1",
"openai-whisper>=20250625",
"python-dotenv>=1.1.1",
]
# [project.optional-dependencies]
# cu128 = [
# "torch>=2.7.0",
# "torchvision>=0.22.0",
# ]
# [tool.uv.sources]
# torch = [
# { index = "pytorch-cu128", extra = "cu128" },
# ]
# torchvision = [
# { index = "pytorch-cu128", extra = "cu128" },
# ]
# [[tool.uv.index]]
# name = "pytorch-cu128"
# url = "https://download.pytorch.org/whl/cu128"
# explicit = true