mirror of
https://github.com/NinjaCheetah/libWiiPy.git
synced 2025-04-26 05:11:02 -04:00
Now saving the version number (like v513) straight from the TMD and using that to dump the TMD, in case the converted version number (like v2.2) doesn't work right, which mostly applies to the system menu.
28 lines
753 B
TOML
28 lines
753 B
TOML
[project]
|
|
name = "libWiiPy"
|
|
version = "0.4.1"
|
|
authors = [
|
|
{ name="NinjaCheetah", email="ninjacheetah@ncxprogramming.com" },
|
|
{ name="Lillian Skinner", email="lillian@randommeaninglesscharacters.com" }
|
|
]
|
|
description = "A modern Python library for handling files used by the Wii"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"pycryptodome",
|
|
"requests"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/NinjaCheetah/libWiiPy"
|
|
Issues = "https://github.com/NinjaCheetah/libWiiPy/issues"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|