-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.26 KB
/
pyproject.toml
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
[tool.poetry]
name = "galsdk"
version = "0.10.0"
description = "Mod tools for the PSX game Galerians"
authors = ["descawed <[email protected]>"]
readme = "README.md"
repository = "https://github.com/descawed/galsdk"
[tool.poetry.dependencies]
python = "^3.12"
panda3d = "^1.10.15"
pillow = "^11.0.0"
pmw = "^2.1.1"
ffmpeg-python = "^0.2.0"
numpy = "^2.1.3"
rabbitizer = "^1.12.0"
json-five = "^1.1.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pre-commit = "^3.8.0"
[tool.poetry.group.build.dependencies]
cx-freeze = "^7.2.2"
[tool.cxfreeze]
executables = [
{script = "galsdk/editor.py", base = "gui"},
"galsdk/animation.py",
"galsdk/db.py",
"galsdk/model.py",
"galsdk/module.py",
"galsdk/sniff.py",
"galsdk/string.py",
{script = "galsdk/tim.py", target_name = "timdb"},
{script = "galsdk/vab.py", target_name = "vabdb"},
"galsdk/xa.py",
{script = "psx/cd/__main__.py", target_name = "psxcd"},
"psx/exe.py",
"psx/tim.py",
{script = "ash/bd.py", target_name = "ash_bd"},
{script = "ash/tex.py", target_name = "ash_tex"},
]
[tool.cxfreeze.build_exe]
includes = ["Pmw"]
include_files = ["assets/", "data/", "sdk/", "README.md"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"