-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 1.45 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (42 loc) · 1.45 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
[project]
name = "auxjad-project-template"
description = "Template for composition projects using Auxjad and Abjad."
authors = [{name = "Gilberto Agostinho", email = "gilbertohasnofb@gmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.11"
version = "1.0.0"
dynamic = ["dependencies", "optional-dependencies"]
[project.urls]
homepage = "https://github.com/gilbertohasnofb/auxjad-project-template"
documentation = "https://github.com/gilbertohasnofb/auxjad-project-template"
source = "https://github.com/gilbertohasnofb/auxjad-project-template"
[tool.pytest.ini_options]
pythonpath = "src"
testpaths = "tests"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.dev = {file = ["requirements-dev.txt"]}
optional-dependencies.test = {file = ["requirements-test.txt"]}
[tool.black]
line-length = 100
target-version = ["py311", "py312", "py313"]
[tool.isort]
profile = "black"
line_length = 100
case_sensitive = true
skip_gitignore = true
[tool.ruff]
line-length = 100
builtins = ["spark", "dbutils", "display"]
[tool.ruff.lint]
select = [
"E", "W", "F", "D101", "D102", "D103", "D104", "D105", "D201", "D202", "D204", "D207", "D208",
"D213", "D214", "D215", "D300", "D301", "D403", "D405", "D410", "D411", "D414",
]
ignore = ["E203"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"main.py" = ["D103"]
"tests/**" = ["D101", "D102", "D103", "D104", "D105"]