-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 817 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 817 Bytes
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
[project]
name = "marktab-py"
version = "0.1.0"
description = "Parser and processor for the Marktab guitar tab format"
authors = [
{ name = "Rod Waldhoff" }
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"lark-parser>=0.12.0,<0.13.0"
]
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pytest-watch = "^4"
black = "^24"
mypy = "^1"
ruff = "^0.12.3"
coverage = "^7"
pytest-cov = "^5"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [ "ignore::DeprecationWarning:lark.utils" ]
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["F", "E", "W", "I", "N", "UP"]
[tool.ruff.lint.per-file-ignores]
"ast_transformer.py" = ["N802"]