-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
50 lines (46 loc) · 1.05 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
[project]
name = "NexusDownloadFlow"
version = "2.1.0"
authors = [
{name = "Gregory Ployart", email = "greg.ynx@gmail.com", alias = "greg-ynx"},
]
description = "Auto-downloader program to automate Nexus modlist downloads for free."
readme = "README.md"
requires-python = ">=3.11"
release-date = 2024-09-16
[python]
version = "3.11.5"
[github]
owner = "greg-ynx"
repository = "https://github.com/greg-ynx/NexusDownloadFlow"
issues = "https://github.com/greg-ynx/NexusDownloadFlow/issues"
[tool.mypy]
python_version = "3.11"
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_return_any = true
show_error_codes = true
warn_unused_ignores = true
[tool.ruff]
lint.extend-select = [
"W",
"I",
"N",
"D",
"S",
#"T20", # use it when you are developping in order to not forget to delete unwanted print calls
"C4",
"SIM",
"TCH"
]
lint.ignore = [
"D203",
"D212"
]
fix = true
show-fixes = true
output-format = "concise"
line-length = 120
target-version = "py311"