-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 2.05 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "soft-ue-cli"
version = "1.25.5"
description = "CLI tool for controlling Unreal Engine via soft-ue-bridge plugin"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"httpx>=0.27",
]
[project.scripts]
soft-ue-cli = "soft_ue_cli.__main__:main"
[project.urls]
Homepage = "https://github.com/softdaddy-o/soft-ue-cli"
Repository = "https://github.com/softdaddy-o/soft-ue-cli"
[project.optional-dependencies]
mcp = ["mcp>=1.2"]
[tool.hatch.build]
include = ["soft_ue_cli/**"]
[tool.hatch.build.targets.wheel]
packages = ["soft_ue_cli"]
# Hatchling excludes non-.py files by default; list every skill .md here so it
# is included in the wheel. Add a new line for each skill file you create.
[tool.hatch.build.targets.wheel.force-include]
"soft_ue_cli/skills/blueprint-to-cpp.md" = "soft_ue_cli/skills/blueprint-to-cpp.md"
"soft_ue_cli/skills/author-test.md" = "soft_ue_cli/skills/author-test.md"
"soft_ue_cli/skills/author-regression-test.md" = "soft_ue_cli/skills/author-regression-test.md"
"soft_ue_cli/skills/author-anim-state-test.md" = "soft_ue_cli/skills/author-anim-state-test.md"
"soft_ue_cli/skills/author-bp-parity-test.md" = "soft_ue_cli/skills/author-bp-parity-test.md"
"soft_ue_cli/skills/author-invariant-test.md" = "soft_ue_cli/skills/author-invariant-test.md"
"soft_ue_cli/skills/plan-test-infrastructure.md" = "soft_ue_cli/skills/plan-test-infrastructure.md"
"soft_ue_cli/skills/setup-test-infrastructure.md" = "soft_ue_cli/skills/setup-test-infrastructure.md"
"soft_ue_cli/skills/level-from-image.md" = "soft_ue_cli/skills/level-from-image.md"
"soft_ue_cli/skills/replay-changes.md" = "soft_ue_cli/skills/replay-changes.md"
"soft_ue_cli/skills/test-tools.md" = "soft_ue_cli/skills/test-tools.md"
[tool.pytest.ini_options]
testpaths = ["tests"]