-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
pyproject.toml
38 lines (34 loc) · 940 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
[build-system]
requires = ["setuptools>=46.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "yt-fts"
version = "0.1.57"
description = "Search all of a YouTube channel from the command line"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "NotJoeMartinez", email = "notjoemartinez@protonmail.com" }
]
keywords = ["youtube", "subtitles", "search"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
]
dependencies = [
"click==8.1.7",
"openai==1.35.3",
"chromadb==0.5.2",
"requests>=2.32.2,<3",
"rich==13.7.1",
"sqlite-utils==3.36",
"beautifulsoup4==4.12.3",
"yt-dlp==2024.7.16",
"webvtt-py==0.5.1"
]
[project.scripts]
yt-fts = "yt_fts.yt_fts:cli"
[project.urls]
Homepage = "https://github.com/NotJoeMartinez/yt-fts"