-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (81 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
88 lines (81 loc) · 2.09 KB
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
85
86
87
88
[build-system]
requires = ["setuptools>=61.0", "wheel", "Cython>=3.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sonic-gate"
version = "0.1.4"
description = "CLI-first deterministic audio/video quality gate with optional AI probing"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "Codinglone", email = "codinglone@gmail.com"}]
requires-python = ">=3.9"
keywords = [
"audio-quality",
"video-quality",
"ffmpeg",
"cli-tool",
"lufs",
"silence-detection",
"media-processing",
"quality-gate",
"audio-analysis",
"pydub",
"whisper",
"openai-whisper",
"devops",
"ci-cd",
"batch-processing",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Environment :: Console",
"Typing :: Typed",
]
dependencies = [
"typer>=0.9.0",
"pydantic>=2.0",
"pyyaml>=6.0",
"pydub>=0.25.1",
"rich>=13.0",
"numpy>=1.24",
]
[project.optional-dependencies]
ai = [
"openai-whisper>=20231117",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"mypy>=1.0",
"Cython>=3.0",
]
[project.scripts]
sonic-gate = "sonic_gate.cli:app"
[project.urls]
Homepage = "https://github.com/Codinglone/sonic-gate"
Repository = "https://github.com/Codinglone/sonic-gate"
Issues = "https://github.com/Codinglone/sonic-gate/issues"
Changelog = "https://github.com/Codinglone/sonic-gate/releases"
[tool.setuptools.packages.find]
where = ["."]
include = ["sonic_gate*"]
[tool.black]
line-length = 100
[tool.mypy]
python_version = "3.9"
strict = true
warn_return_any = true
warn_unused_configs = true