-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.03 KB
/
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
44
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "transcripter"
version = "0.1.0"
authors = [
{ name = "Ryan Gordon", email = "[email protected]" },
]
description = "A tool for indexing and searching YouTube transcripts."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"flask",
"redis",
"redisearch",
"python-dotenv",
"youtube-transcript-api",
"python-youtube",
"pyyaml",
"loguru"
]
[project.optional-dependencies]
dev = [
"mock"
]
[project.urls]
"Homepage" = "https://github.com/0xRy4n/transcripter"
"Bug Tracker" = "https://github.com/0xRy4n/transcripter/issues"
"Author Twitter" = "https://x.com/0xRy4n"
"Author Site" = "https://ry4n.sh"
[project.scripts]
transcripter = "transcripter.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["transcripter"]
[tool.coverage.run]
source = ["transcripter"]