-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (64 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
67 lines (64 loc) · 2.24 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
[project]
name = "PySide6-project-template"
version = "0.1.0"
description = "An unofficial and opinionated project template designed for a quick start with PySide6 and QtQuick."
readme = "README.MD"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Private :: Do Not Upload",
]
dependencies = [
"pyside6-essentials==6.11.0",
"pywin32>=311; sys_platform == 'win32'",
]
[dependency-groups]
dev = [
"pytest>=9.0.3",
]
[project.urls]
Homepage = "https://github.com/trin94/PySide6-project-template"
Repository = "https://github.com/trin94/PySide6-project-template"
Issues = "https://github.com/trin94/PySide6-project-template/issues"
[tool.pyside6-project]
files = [
# WARNING! This list is auto updated by the just build helper
"data/app-icon.svg",
"data/icons/close_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg",
"data/icons/close_fullscreen_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg",
"data/icons/minimize_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg",
"data/icons/open_in_full_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg",
"data/qtquickcontrols2.conf",
"i18n/de-DE.ts",
"i18n/he-IL.ts",
"main.py",
"project.qrc",
"qt/qml/main.qml",
"qt/qml/models/MyAppLanguageModel.qml",
"qt/qml/models/qmldir",
"qt/qml/models/tst_MyAppLanguageModel.qml",
"qt/qml/shared/MyAppAutoWidthMenu.qml",
"qt/qml/shared/qmldir",
"qt/qml/views/MyAppHeaderView.qml",
"qt/qml/views/MyAppMainView.qml",
"qt/qml/views/qmldir",
"src/__init__.py",
"src/application.py",
"src/framelesswindow/__init__.py",
"src/framelesswindow/linux/__init__.py",
"src/framelesswindow/linux/event.py",
"src/framelesswindow/win/__init__.py",
"src/framelesswindow/win/c_structures.py",
"src/framelesswindow/win/effect.py",
"src/framelesswindow/win/event.py",
"src/startup.py",
"src/viewmodels/__init__.py",
"src/viewmodels/header.py",
"src/viewmodels/main.py",
]