-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
40 lines (35 loc) · 1.22 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
[tool.poetry]
name = "avsearch"
version = "0.1.1"
description = "Automated YouTube Audio/Video content transcription search for your website"
authors = ["Michael King <michael.king@algolia.com>", "Chuck Meyer <chuck.meyer@algolia.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/algolia-samples/avsearch"
repository = "https://github.com/algolia-samples/avsearch"
documentation = "https://github.com/algolia-samples/avsearch"
keywords = ["algolia", "youtube", "audio", "transcribe"]
classifiers = [
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/algolia-samples/avsearch/issues"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
algoliasearch = "^2.6.2"
click = "^8.1.3"
schema = "^0.7.5"
openai-whisper = {git = "https://github.com/openai/whisper.git"}
pre-commit = "^2.20.0"
youtube-dl = {path = "../youtube-dl"}
[tool.poetry.scripts]
av-search = "avsearch:cli"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
flake8 = "^5.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"