mirror of
https://github.com/mon/ifstools.git
synced 2026-05-09 12:24:07 -05:00
31 lines
583 B
TOML
31 lines
583 B
TOML
[build-system]
|
|
requires = ["maturin>=1.7,<2"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "ifstools"
|
|
version = "2.0"
|
|
description = "Extractor/repacker for Konmai IFS files"
|
|
readme = "README.md"
|
|
authors = [
|
|
{name = "mon", email = "me@mon.im"},
|
|
]
|
|
dependencies = [
|
|
"kbinxml>=1.5",
|
|
"lxml",
|
|
"pillow",
|
|
"tqdm",
|
|
]
|
|
requires-python = ">=3.10"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/mon/ifstools/"
|
|
|
|
[project.scripts]
|
|
ifstools = "ifstools:main"
|
|
|
|
[tool.maturin]
|
|
python-source = "src"
|
|
module-name = "ifstools.handlers._lz77_native"
|
|
features = ["pyo3/extension-module"]
|