mirror of
https://github.com/xgui4/LCE-Qt-Launcher.git
synced 2026-07-18 03:40:50 +00:00
87 lines
2.4 KiB
TOML
87 lines
2.4 KiB
TOML
[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 = "26.3.30a1"
|
|
description = "This is a custom Free/Libre Minecraft LCE Launcher written in Python and Qt."
|
|
requires-python = ">3.10, <3.13"
|
|
license = "GPL-3.0-or-later"
|
|
readme = "readme.md"
|
|
license-files = [ "license.md" ]
|
|
|
|
dependencies = [
|
|
"pyside6; sys_platform == 'win32' or sys_platform == 'linux' or sys_platform == 'darwin'",
|
|
"requests",
|
|
"rich",
|
|
"term-image",
|
|
"pip",
|
|
"hatch",
|
|
"nuitka",
|
|
"walker; sys_platform == 'win32'",
|
|
"patchelf; sys_platform == 'linux'",
|
|
]
|
|
|
|
[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.build]
|
|
artifacts = [
|
|
"src/ui_*.py",
|
|
"src/res_rc.py",
|
|
]
|
|
|
|
[tool.nuitka]
|
|
standalone = true
|
|
onefile = false
|
|
enable-plugin = "pyside6"
|
|
windows-icon-from-ico = "assets/app.ico"
|
|
product-name = "LCE-Qt-Launcher"
|
|
file-description = "Custom Free/Libre Minecraft LCE Launcher"
|
|
copyright = "GPL-3.0-or-later"
|
|
windows-file-version = "26.3.30.a1."
|
|
windows-product-version = "26.30.a1"
|
|
include-data-dir = "assets"
|
|
include-distribution-metadata = "LCE-Qt-Launcher"
|
|
include-module = [
|
|
"res_rc",
|
|
"ui_form",
|
|
"ui_system_info"
|
|
]
|
|
|
|
[tool.pyside6-project]
|
|
files = [
|
|
"src/lce_qt_launcher/__init__.py",
|
|
"src/lce_qt_launcher/build_info.py",
|
|
"src/lce_qt_launcher/user_pref.py",
|
|
"src/lce_qt_launcher/downloader.py",
|
|
"src/lce_qt_launcher/launcher.py",
|
|
"src/lce_qt_launcher/theme.py",
|
|
"src/lce_qt_launcher/json_trans.py",
|
|
"src/lce_qt_launcher/cli.py",
|
|
"src/lce_qt_launcher/utils.py",
|
|
"src/lce_qt_launcher/term_service.py",
|
|
"src/lce_qt_launcher/features.py",
|
|
"src/lce_qt_launcher/gui/__init__.py",
|
|
"src/lce_qt_launcher/gui/setting_dialog.py",
|
|
"src/lce_qt_launcher/gui/browser_dialog.py",
|
|
"src/lce_qt_launcher/managers/__init__.py",
|
|
"src/lce_qt_launcher/managers/instance.py",
|
|
"src/lce_qt_launcher/managers/system_managers.py",
|
|
"src/system_info.ui",
|
|
"src/instance.ui",
|
|
"src/form.ui",
|
|
"src/main.py",
|
|
"license.md",
|
|
"readme.md",
|
|
"res.qrc",
|
|
"CODE-DE-CONDUITE.md",
|
|
"code-of-conduct.md",
|
|
"assets/app.ico"
|
|
]
|