-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 829 Bytes
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
[project]
name = "mio_decomp"
authors = [
{name = "ShackledMars261"}
]
license = {text = "MIT"}
version = "0.3.1"
description = "A CLI for decompiling the .gin files from MIO: Memories in Orbit."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"lz4>=4.4.5",
"pathvalidate>=3.3.1",
"pydantic>=2.12.5",
"rich>=14.3.1",
"typer>=0.21.1",
"zstandard>=0.25.0",
]
keywords = ["decompile", "decompiler", "mio", "memories-in-orbit"]
[project.urls]
Homepage = "https://github.com/ShackledMars261/mio-decomp-cli"
"Bug Tracker" = "https://github.com/ShackledMars261/mio-decomp-cli/issues"
[project.scripts]
mio-decomp = "mio_decomp.main:app"
[build-system]
requires = ["uv_build>=0.9.17,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "mio_decomp"
module-root = ""