-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.48 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
[tool.poetry]
name = "pymusiclooper"
version = "3.4.2"
description = "Repeat music endlessly and create seamless music loops, with play/export/tagging support."
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
]
repository = "https://github.com/arkrow/PyMusicLooper"
readme = "README.md"
authors = ["arkrow <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
librosa = "0.10.2"
numpy = ">=1.25.0, <2.0.0"
soundfile = ">=0.12.1"
sounddevice = ">=0.5.0"
rich-click = "^1.8.0"
rich = ">= 13.4.2"
pytaglib = "^3.0.0"
numba = ">=0.59.1"
yt-dlp = ">=2024.8.6"
click-params = "^0.5.0"
click-option-group = "^0.5.6"
lazy-loader = ">=0.3"
[tool.poetry.scripts]
pymusiclooper = 'pymusiclooper.__main__:cli'
[tool.poetry.urls]
"Changelog" = "https://github.com/arkrow/PyMusicLooper/blob/master/CHANGELOG.md"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py38']
[tool.isort]
profile = "black"
[tool.ruff]
ignore = ["E501", "E402"]