-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.37 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
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = [
"setuptools>=61.0", # PEP 621 support in setuptools
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "asb-auto-subgen"
version = "1.0.7"
description = "A tool for downloading YouTube audio, generating subtitles, and sending them to an HTTP endpoint."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT License" }
authors = [
{ name = "bpwhelan", email = "your-email@example.com" }
]
urls = { Homepage = "https://github.com/bpwhelan/ASB-Auto-Subgen", Repository = "https://github.com/bpwhelan/ASB-Auto-Subgen" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"dataclasses-json>=0.6.7",
"groq>=1.0.0",
"numba>=0.63.1",
"pyperclip>=1.9.0",
"pyyaml>=6.0.3",
"requests~=2.32.3",
"watchdog>=6.0.0",
"yt-dlp>=2026.2.4",
]
[project.scripts]
asb-auto-subgen = "groq_sub_gen.main:main"
[project.optional-dependencies]
local = [
"stable-ts>=2.19.1",
]
[tool.setuptools]
packages = ["groq_sub_gen", "asbplayer"]
[tool.setuptools.package-data]
"asbplayer" = [
"scripts/web-socket-server/main.go",
"scripts/web-socket-server/go.mod",
"scripts/web-socket-server/go.sum",
"scripts/web-socket-server/cli/*",
]
[dependency-groups]
dev = [
"build>=1.4.0",
]