-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (72 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
83 lines (72 loc) · 2.27 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nton"
description = "Nintendo Switch NRO to NSP Forwarder."
authors = [{ email = "rlaphoenix@pm.me" }]
requires-python = ">=3.9"
readme = "README.md"
license = "GPL-3.0-only"
license-files = ["LICENSE"]
keywords = ["nintendo", "switch", "homebrew", "forwarder"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Topic :: Games/Entertainment",
"Topic :: Utilities",
]
dependencies = [
"click~=8.1.8",
"requests~=2.32.5",
"jsonpickle~=4.1.1",
"coloredlogs~=15.0.1",
"beautifulsoup4~=4.14.3",
"lxml~=6.0.2",
"pillow~=11.3.0",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/rlaphoenix/nton"
Issues = "https://github.com/rlaphoenix/nton/issues"
Discussions = "https://github.com/rlaphoenix/nton/discussions"
Changelog = "https://github.com/rlaphoenix/nton/blob/master/CHANGELOG.md"
[project.optional-dependencies]
gui = ["PySide6-Essentials~=6.10.1"]
[dependency-groups]
pack = ["pyinstaller~=6.18.0"]
lint = ["ruff~=0.14.13", "pre-commit~=4.3.0"]
form = ["ruff~=0.14.13", "isort~=6.1.0"]
type = [
"mypy~=1.19.1",
"types-requests~=2.32.4.20260107",
"types-lxml~=2026.1.1",
"types-Pillow~=10.2.0.20240822",
]
[project.scripts]
nton = "nton.main:main"
[tool.hatch.version]
path = "nton/__init__.py"
[tool.hatch.build.targets.wheel]
exclude = ["nton/gui/resources"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "W"]
[tool.isort]
line_length = 118
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
follow_imports = "silent"
ignore_missing_imports = true
no_implicit_optional = true