-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (58 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (58 loc) · 1.8 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "OSCR-UI"
dependencies = [
"PySide6==6.11.1",
"pyqtgraph==0.14.0",
"numpy==2.4.2",
"STO-OSCR==11.0.1",
"requests==2.34.2"
]
requires-python = ">=3.13"
authors = []
maintainers = []
description = "Open Source Combatlog Reader"
readme = "README.md"
license = {file = "LICENSE"}
keywords = []
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dynamic = ["version"]
[project.optional-dependencies]
pyinst = [
"pyinstaller==6.21.0"
]
[project.urls]
Homepage = "https://github.com/STOCD/OSCR-UI"
Repository = "https://github.com/STOCD/OSCR-UI.git"
"Bug Tracker" = "https://github.com/STOCD/OSCR-UI/issues"
[tool.hatch.build.targets.wheel]
packages = ["."]
[project.scripts]
oscr = "main:Launcher.launch"
[tool.hatch.version]
path = "main.py"
pattern = "\\s*__version__ = '(?P<version>.*)'"
[tool.black]
target-version = ['py38']
line-length = 110
[tool.cxfreeze]
executables = [
{ script = "main.py", base = "gui", target_name = "OSCR", icon = "assets/oscr_icon_small", shortcut_name = "Open Source Combatlog Reader", shortcut_dir = "DesktopFolder" },
{ script = "main.py", base = "gui", target_name = "OSCR", icon = "assets/oscr_icon_small", shortcut_name = "Open Source Combatlog Reader", shortcut_dir = "ProgramMenuFolder" },
]
[tool.cxfreeze.build_exe]
include_files = ["assets", "README.md", "LICENSE", "locales"]
zip_include_packages = ["*"]
zip_exclude_packages = []
[tool.cxfreeze.bdist_msi]
initial_target_dir = "[ProgramFilesFolder]OSCR"
install_icon = "assets/oscr_icon_small.ico"
upgrade_code = "{4780dfdf-6dc6-4d06-93ad-f0297d4f5bf2}"
[tool.setuptools.data-files]
"share/applications" = ["assets/oscr.desktop"]
"share/icons/hicolor/64x64/apps" = ["assets/oscr_icon_small.png"]