-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 839 Bytes
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 839 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
42
43
44
45
46
47
48
49
50
51
[project.urls]
repository = "https://github.com/NaturalHistoryMuseum/join-the-dots-dev"
changelog = "https://github.com/NaturalHistoryMuseum/join-the-dots-dev/blob/main/CHANGELOG.md"
[tool]
[tool.setuptools]
zip-safe = false
[tool.commitizen]
name = "cz_nhm"
version = "1.8.1"
tag_format = "v$version"
update_changelog_on_bump = true
changelog_incremental = true
version_provider = "npm"
version_files = [
"pyproject.toml:version"
]
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"D"
]
ignore = [
"D100",
"D104",
"D200",
"D202",
"D203",
"D205",
"D206",
"D212",
"D300",
"D401",
"E111",
"E114",
"E117"
]
[tool.docformatter]
wrap-summaries = 88
wrap-descriptions = 88
pre-summary-newline = true
make-summary-multi-line = true