-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (86 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
94 lines (86 loc) · 1.75 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
89
90
91
92
93
94
[project]
name = "yt-audio-separator"
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.35.0",
"yt-dlp>=2025.9.5",
"soundfile>=0.12.0",
"librosa>=0.10.0",
"audio-separator>=0.36.1",
"onnxruntime>=1.22.1",
"dotenv>=0.9.9",
"boto3>=1.39.9,<1.39.12",
"aioboto3>=15.1.0",
"aiofiles>=24.1.0",
"validators>=0.35.0",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"slowapi>=0.1.9",
"structlog>=25.4.0",
"aiobotocore>=2.24.0",
"httpx>=0.27.0",
"cloudflare>=4.3.1",
"rq>=1.18.0",
"redis>=5.2.0",
]
[dependency-groups]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
"pylint>=3.3.8",
"types-aiobotocore-s3>=2.24.2",
]
[tool.black]
line-length = 100
target-version = ['py312']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.pylint.main]
load-plugins = []
[tool.pylint."messages control"]
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"too-few-public-methods",
"invalid-name",
"unused-import",
"import-error",
"too-many-arguments",
"too-many-locals",
"too-many-branches",
"too-many-statements",
]
[tool.pylint.format]
max-line-length = 100
[tool.pylint.basic]
good-names = ["i", "j", "k", "ex", "Run", "_", "id", "db", "app", "e"]
[tool.pylint.design]
max-attributes = 10
max-parents = 10
max-returns = 8
max-branches = 15
max-statements = 60