-
Notifications
You must be signed in to change notification settings - Fork 257
/
pyproject.toml
38 lines (32 loc) · 1.02 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
[tool.poetry]
name = "videogrep"
version = "2.3.0"
description = "Videogrep is a command line tool that searches through dialog in video and audio files and makes supercuts based on what it finds. Like grep but for video."
authors = ["Sam Lavigne <[email protected]>"]
license = "Anti-Capitalist"
readme = "README.md"
homepage = "http://antiboredom.github.io/videogrep/"
repository = "https://github.com/antiboredom/videogrep"
keywords = ["video", "supercut"]
classifiers = [
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Text Processing",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.8"
beautifulsoup4 = "^4.11.1"
moviepy = "^1.0.3"
vosk = {version = "0.3.32", optional = true}
[tool.poetry.extras]
full = ["vosk"]
[tool.poetry.dev-dependencies]
tox = "^3.25.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
videogrep = "videogrep.cli:main"