forked from timwedde/py_midicsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.12 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
61
62
63
64
65
66
[tool.poetry]
name = "py_midicsv"
version = "4.1.2"
description = "A library for converting MIDI files from and to CSV format"
authors = ["Tim Wedde <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/timwedde/py_midicsv"
homepage = "https://github.com/timwedde/py_midicsv"
[tool.poetry.scripts]
midicsvpy = "py_midicsv.cli:midicsv"
csvmidipy = "py_midicsv.cli:csvmidi"
[tool.poetry.dependencies]
python = "^3.8"
rich-click = "^1.8.3"
[tool.poetry.dev-dependencies]
pdoc3 = "^0.10.0"
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
pre-commit = "^3.5.0"
pytest-mock = "^3.14.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.mypy]
ignore_missing_imports = true
[tool.black]
line-length = 120
[tool.ruff]
fix = true
force-exclude = true # necessary for excludes to work in pre-commit
exclude = [
# "path/",
]
line-length = 120
[tool.ruff.lint]
ignore = [
"E402",
"E722",
"TID252",
"C901",
"F405",
"F403",
]
select = [
"E",
"F",
"W",
"I",
"UP",
"S105",
"S106",
"S107",
"C",
"B",
"Q",
"RUF",
]