-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
75 lines (68 loc) · 1.74 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
[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.13"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Games/Entertainment",
"Development Status :: 4 - Beta"
]
dependencies = [
"PySide6>=6.7,<6.10",
"requests",
"cloudscraper",
"curl_cffi",
"numpy",
"requests_html",
"lxml_html_clean",
"cssselect",
# WARP — Screenshot-to-Build importer dependencies
"opencv-python-headless>=4.9",
"easyocr>=1.7",
"python-bidi>=0.4",
"pyclipper>=1.3",
"shapely>=2.0",
"scikit-image>=0.21",
"scipy>=1.11",
"onnxruntime>=1.18",
"huggingface-hub>=0.22",
# WARP — ML training dependencies (CPU-only torch — no CUDA drivers needed)
"torch>=2.1",
"torchvision>=0.16",
"onnx>=1.15",
"onnxscript>=0.1",
"onnx-ir>=0.1.15",
"ml-dtypes>=0.5",
"typing_extensions>=4.8",
"pillow>=9.0",
"sympy>=1.12",
"fsspec>=2024.1",
"networkx>=3.0",
"pyyaml>=6.0"
]
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", "cssselect"]
optimize = 2