forked from STOCD/SETS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "SETS"
description = "A Star Trek Online build tool in Python"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Games/Entertainment",
"Development Status :: 4 - Beta"
]
dependencies = [
"PySide6",
"requests",
"numpy",
"requests_html",
"lxml_html_clean"
]
dynamic = ["version"]
[project.urls]
homepage = "https://stobuilds.com/apps/sets"
repository = "https://github.com/STOCD/SETS"
[tool.hatch.build.targets.wheel]
packages = ["."]
[project.scripts]
sets = "main:Launcher.launch"
[tool.hatch.version]
path = "main.py"
pattern = "\\s*version = '(?P<version>.*)'"
[tool.cxfreeze]
executables = [
{ script = "main.py", base = "gui", icon = "local/icon", target_name = "SETS" }
]
[tool.cxfreeze.build_exe]
include_files = ["local", "LICENSE", "README.md"]
packages = ["PySide6", "requests", "numpy", "requests_html", "lxml_html_clean"]
optimize = 2