forked from moehmeni/syncedlyrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (27 loc) · 832 Bytes
/
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
[tool.poetry]
name = "syncedlyrics"
version = "0.10.1"
description = "Get an LRC format (synchronized) lyrics for your music"
repository = "https://github.com/rtcq/syncedlyrics"
urls = { "Bug Tracker" = "https://github.com/rtcq/syncedlyrics/issues" }
authors = ["Momo <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
[tool.poetry.dependencies]
python = ">=3.8"
requests = "^2.31.0"
beautifulsoup4 = "^4.12.3"
rapidfuzz = "^3.6.2"
[tool.poetry.scripts]
syncedlyrics = "syncedlyrics.cli:cli_handler"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
black = "^24.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"