-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 784 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 784 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
30
31
32
33
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "youtube-transcriber"
version = "1.0.4"
description = "Downloads YouTube audio and creates local text transcripts."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Justin Nguyen" },
]
dependencies = [
"faster-whisper>=1.2,<2",
"yt-dlp>=2025.1.15",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
[project.scripts]
yt-transcribe = "yt_transcribe:main"
[tool.setuptools]
py-modules = ["yt_transcribe"]