-
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.25 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (42 loc) · 1.25 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
[project]
name = "trail-cli"
version = "0.1.2"
description = "Agent-friendly HSR automation CLI"
readme = "README.md"
requires-python = ">=3.12"
license = "GPL-3.0-only"
license-files = ["LICENSE", "THIRD_PARTY_NOTICES*"]
dependencies = [
"typer>=0.12",
"pillow>=10.0",
"pyautogui>=0.9.54",
"pygetwindow>=0.0.9",
"pyscreeze>=1.0.1",
"pyyaml>=6.0",
"pywin32>=306",
"importlib-metadata>=8.0",
"onnxruntime-directml>=1.24.0; platform_system == 'Windows'",
"rapidocr-onnxruntime>=1.3.24",
"windows-capture>=2.0.0",
"rectangle-packer>=2.1.0",
]
[dependency-groups]
dev = ["pytest>=8.0", "pytest-xdist>=3.6", "build>=1.2", "pyinstaller>=6.11"]
[tool.pytest.ini_options]
addopts = ["--basetemp=.pytest-tmp"]
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
default = true
[project.scripts]
trail = "trail.cli:app"
traild = "trail.daemon.server:main"
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["trail"]
[tool.hatch.build.targets.sdist.force-include]
"trail/scenes/cw/generated" = "trail/scenes/cw/generated"
"trail/scenes/cw/assets/slots" = "trail/scenes/cw/assets/slots"
"trail/scenes/cw/assets/equipment-empty" = "trail/scenes/cw/assets/equipment-empty"