-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (52 loc) · 1.13 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lrcparser"
version = "0.1.2"
authors = [{ name = "283375", email = "log_283375@163.com" }]
description = "A simple lyric file parser"
readme = "README.md"
requires-python = ">=3.8"
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
[project.urls]
"Homepage" = "https://github.com/283375/lrcparser_python"
"Bug Tracker" = "https://github.com/283375/lrcparser_python/issues"
[tool.setuptools]
package-dir = {"lrcparser" = "lrcparser"}
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "--doctest-modules"
[tool.tox]
legacy_tox_ini = """
[tox]
requires =
tox>=4
env_list =
format
py{38, 39, 310}
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
[testenv:format]
description = format code
deps = black==23.1.0
skip_install = true
commands = black .
[testenv]
description = run unit tests
deps =
pytest>=7
pytest-sugar
skip_install = true
commands =
pytest . {posargs:tests}
"""