-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (99 loc) · 3.37 KB
/
Copy pathpyproject.toml
File metadata and controls
111 lines (99 loc) · 3.37 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = [
"hatchling",
"PySide6; sys_platform == 'win32' or sys_platform == 'linux' or sys_platform == 'darwin'"
]
build-backend = "hatchling.build"
[project]
name = "LCE-Qt-Launcher"
version = "0.0.21a2"
description = "A custom Free/Libre Minecraft LCE Launcher written with PySide6 (Python for Qt 6)."
requires-python = ">3.10, <3.13"
license = "GPL-3.0-or-later"
readme = "readme.md"
license-files = [ "license.md" ]
dependencies = [
"PySide6<=6.11.1; sys_platform == 'win32' or sys_platform == 'linux' or sys_platform == 'darwin'",
"platformdirs<=4.10.0",
"hatch<=1.17.0",
"rich<=15.0.0",
"vdf<=3.4",
"patchelf<=0.17.2.4; sys_platform == 'linux'",
"Nuitka<=4.1.3",
]
[dependency-groups]
dev = [
"pyproject-appimage>=4.2; sys_platform == 'linux'",
]
[project.scripts]
lce-qt-launcher = "lce_qt_launcher.main:main"
lce-mod-manager = "lce_qt_launcher.managers.mod_manager:main"
lce-steam-manager = "lce_qt_launcher.managers.steam_manager:main"
[project.urls]
Repository = "https://github.com/xgui4/LCE-QT-Launcher"
LicenseURL = "https://www.gnu.org/licenses/gpl-3.0"
[tool.hatch.build.targets.wheel.hooks.custom]
path = "hatch_build.py"
[tool.hatch.envs.default.scripts]
packages = "python packages.py"
[tool.pyright]
typeCheckingMode="strict"
[tool.pyproject-appimage]
script = "lce-qt-launcher"
output = "lce-qt-launcher.AppImage"
desktop-entry = "packages/io.github.xgui4.lce_qt_launcher-isolated.desktop"
icon = "assets/io.github.xgui4.lce_qt_launcher.png"
appstream = "io.github.xgui4.lce_qt_launcher.metainfo.xml"
[tool.hatch.build]
artifacts = [
"src/lce_qt_launcher/ui_*.py",
"src/lce_qt_launcher/res_rc.py",
]
[tool.hatch.build.targets.wheel]
artifacts = [
"src/lce_qt_launcher/ui_*.py",
"src/lce_qt_launcher/res_rc.py",
]
[tool.pyside6-project]
files = [
"src/lce_qt_launcher/__init__.py",
"src/lce_qt_launcher/app.py",
"src/lce_qt_launcher/app_context.py",
"src/lce_qt_launcher/features.py",
"src/lce_qt_launcher/views/__init__.py",
"src/lce_qt_launcher/views/cmd_args.py",
"src/lce_qt_launcher/views/setting_dialog.py",
"src/lce_qt_launcher/views/browser_dialog.py",
"src/lce_qt_launcher/views/term_service.py",
"src/lce_qt_launcher/views/cli.py",
"src/lce_qt_launcher/views/launcher.py",
"src/lce_qt_launcher/views/app_data.py",
"src/lce_qt_launcher/views/system_info_view.py",
"src/lce_qt_launcher/views/instance_editor_view.py",
"src/lce_qt_launcher/views/about_view.py",
"src/lce_qt_launcher/managers/__init__.py",
"src/lce_qt_launcher/managers/instance.py",
"src/lce_qt_launcher/managers/system_manager.py",
"src/lce_qt_launcher/managers/steam_manager.py",
"src/lce_qt_launcher/managers/mod_manager.py",
"src/lce_qt_launcher/managers/import_manager.py",
"src/lce_qt_launcher/managers/skin_manager.py",
"src/lce_qt_launcher/managers/display_manager.py",
"src/lce_qt_launcher/models/__init__.py",
"src/lce_qt_launcher/models/pref.py",
"src/lce_qt_launcher/models/theme.py",
"src/lce_qt_launcher/utils/__init__.py",
"src/lce_qt_launcher/utils/json_trans.py",
"src/lce_qt_launcher/utils/holyday.py",
"src/system_info.ui",
"src/instance.ui",
"src/form.ui",
"src/main.py",
"license.md",
"lisezmoi.md",
"readme.md",
"res.qrc",
"CODE-DE-CONDUITE.md",
"code-of-conduct.md",
"assets/app.ico"
]