-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (53 loc) · 1.23 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
[tool.poetry]
name = "lrctoolbox"
version = "1.2.0"
description = "toolkit for working with lrc files"
authors = ["Dr-Blank <[email protected]>"]
readme = "README.md"
repository = "https://github.com/Dr-Blank/lrctoolbox"
keywords = [
"lrc",
"lyrics",
"pylrc",
"synced lyrics",
"karaoke",
"music",
"file",
"parser",
"editor",
"converter",
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Desktop Environment :: File Managers",
"Topic :: Text Processing",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Utilities",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
pylint = "^2.17.6"
pytest = "^7.4.2"
black = "^23.9.1"
pre-commit = "^3.4.0"
pytest-cov = "^4.1.0"
flake8 = "^6.1.0"
tox = "^4.11.3"
wrapt = "^1.15.0"
dill = "^0.3.7"
mypy = "^1.5.1"
[tool.poetry.group.docs.dependencies]
sphinx-rtd-theme = "^1.3.0"
nbsphinx = "^0.9.3"
ipython = "^8.17.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
preview = true