-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
92 lines (83 loc) · 2.24 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
85
86
87
88
89
90
91
92
[project]
version = "0.4"
name = "remucs"
description = "Demucs wrapper for remixing audio files with additional customizations"
authors = [{name = "Juergen Hock", email = "juergen.hock@jurihock.de"}]
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
keywords = [
"digital",
"audio",
"signal",
"processing",
"dasp",
"dafx",
"effects",
"filter",
"demucs",
"frequency",
"phase",
"spectrum",
"algorithms",
"analysis",
"synthesis",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Artistic Software",
"Topic :: Education",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.11"
dependencies = [
"click",
"numpy",
"qdft",
"resampy",
"soundfile",
"stftpitchshift",
"tqdm",
]
[project.optional-dependencies]
demucs = ["demucs>=4.0"]
[project.urls]
Homepage = "https://github.com/jurihock/remucs"
Documentation = "https://github.com/jurihock/remucs/blob/main/README.md"
Repository = "https://github.com/jurihock/remucs.git"
Issues = "https://github.com/jurihock/remucs/issues"
[project.scripts]
remucs = "remucs.__main__:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["remucs"]
[tool.pytest.ini_options]
testpaths = ["src/tests"]
addopts = ["--capture=tee-sys"]
[tool.pylint]
max-args = 10
max-attributes = 20
max-locals = 50
max-line-length = 150
exclude-protected = ["_load_audio"] # demucs.api.Separator._load_audio
[tool.pylint."messages control"]
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
]
[tool.pyright]
reportMissingImports = false # import demucs.{separate,api}
reportPossiblyUnboundVariable = false # import demucs.{separate,api}
reportPrivateImportUsage = false # demucs.api.save_audio