-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
84 lines (76 loc) · 2.39 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "BAET"
version = "1.0.2"
# TODO: Make PEP621 compliant - https://github.com/python-poetry/roadmap/issues/3
#requires-python = ">=3.11"
description = "A tool to bulk extract audio tracks from video using FFmpeg"
authors = ["Phillip Smith"]
maintainers = ["TimeTravelPenguin <TimeTravelPenguin@gmail.com>"]
readme = "README.md"
license = "GPL-3.0-or-later"
packages = [{ include = "BAET", from = "src" }]
keywords = ["ffmpeg", "audio", "video", "extract", "bulk", "batch"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Flake8",
"Framework :: Pytest",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Multimedia :: Video :: Conversion",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Typing :: Typed",
]
[tool.poetry.urls]
homepage = "https://github.com/TimeTravelPenguin/BulkAudioExtractTool"
repository = "https://github.com/TimeTravelPenguin/BulkAudioExtractTool"
[tool.poetry.scripts]
baet = "BAET.__main__:main"
[tool.poetry.dependencies]
python = ">=3.12,<4.0.0"
asyncio = "^3.4.3"
bidict = "^0.23.1"
click-option-group = "^0.5.6"
ffmpeg-python = "^0.2.0"
more-itertools = "^10.1.0"
rich = "^13.7.0"
rich-argparse = "^1.4.0"
rich-click = "^1.7.3"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.8"
debugpy = "^1.8.0" # TODO: Needs PEP 695 support
docformatter = "1.7.5"
faker = "^24.7.1"
mypy = "*"
pre-commit = "^3.6.0"
pylint = "*"
pytest = "^8.1.1"
pytest-repeat = "^0.9.3"
ruff = "^0.3.5"
types-pygments = "^2.17.0.0"
[tool.mypy]
mypy_path = "src"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-x"
log_cli = true
log_cli_level = "CRITICAL"
log_cli_format = "%(messages)s"
log_file = "../logs/test.log"
log_file_level = "INFO"
log_file_format = "\n%(asctime)s: [%(levelname)s]\n\t%(message)s (%(filename)s:%(lineno)d)"
log_file_date_format = "%Y-%m-%d @ %H:%M:%S %Z"
[tool.poetry-dynamic-versioning]
enable = true
metadata = false
vcs = "git"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"