-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.62 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "nton"
version = "2.1.1"
description = "Nintendo Switch NRO to NSP Forwarder."
authors = ["rlaphoenix <rlaphoenix@pm.me>"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/rlaphoenix/nton"
keywords = ["nintendo", "switch", "homebrew", "forwarder"]
classifiers = [
"Development Status :: 4 - Beta",
"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"
]
exclude = ["nton/gui/resources"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/rlaphoenix/nton/issues"
"Forums" = "https://github.com/rlaphoenix/nton/discussions"
"Changelog" = "https://github.com/rlaphoenix/nton/blob/master/CHANGELOG.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
click = "^8.1.7"
requests = "^2.31.0"
jsonpickle = "^3.0.2"
coloredlogs = "^15.0.1"
beautifulsoup4 = "^4.12.3"
lxml = "^5.1.0"
pillow = "^10.2.0"
PySide6-Essentials = { version = "^6.6.1", optional = true }
[tool.poetry.group.dev.dependencies]
pyinstaller = "^6.3.0"
[tool.poetry.extras]
gui = ["PySide6-Essentials"]
[tool.poetry.scripts]
nton = "nton.main:main"