-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
38 lines (33 loc) · 985 Bytes
/
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
[tool.poetry]
name = "ArkUnpacker"
version = "3.2.1"
description = "Arknights Assets Unpacker"
authors = ["Harry Huang <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "3.8.10"
bson = "~0.5"
flatbuffers = "~24.3"
numpy = "~1.24"
Pillow = "~8.4"
pycryptodome = "~3.20"
UnityPy = "~1.10"
[tool.poetry.dev-dependencies]
pyinstaller = "6.8.0"
[[tool.poetry.source]]
name = "PyPI-Tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
priority = "primary"
[tool.build]
build-dir = "$project$\\build"
entry = "$project$\\Main.py"
icon = "$project$\\ArkUnpacker.ico"
add-binary = "$venv$\\Lib\\site-packages\\UnityPy\\lib:UnityPy\\lib|$venv$\\Lib\\site-packages\\UnityPy\\resources\\uncompressed.tpk:UnityPy\\resources"
add-data = "$project$\\src\\fbs\\CN:src\\fbs\\CN"
hidden-import = "flatbuffers"
log-level = "WARN"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"