mtkclient/pyproject.toml

70 lines
1.7 KiB
TOML
Raw Normal View History

2021-08-01 16:25:44 -04:00
[build-system]
requires = [
"setuptools>=61",
2021-08-01 16:25:44 -04:00
"wheel",
2023-10-20 08:48:34 -04:00
]
build-backend = "setuptools.build_meta"
[project]
name = "mtkclient"
description = "Mediatek reverse engineering and flashing tools"
maintainers = [
{name = "Bjoern Kerler", email = "info@revskills.de"}
]
readme = "README.md"
license = {file = "LICENSE"}
version = "2.0.1"
requires-python = ">= 3.8"
2023-10-20 08:48:34 -04:00
dependencies = [
2021-08-01 16:25:44 -04:00
"pyusb",
"pycryptodome",
"pycryptodomex",
2021-08-01 16:25:44 -04:00
"colorama",
2021-12-31 07:00:23 -05:00
"shiboken6",
"pyside6",
"mock",
"pyserial",
"fusepy"
2021-08-01 16:25:44 -04:00
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ["mediatek", "mtk", "flashing", "reverse engineering", "firmware"]
[project.urls]
Repository = "https://github.com/bkerler/mtkclient.git"
Issues = "https://github.com/bkerler/mtkclient/issues"
2024-06-05 10:47:38 -04:00
[project.scripts]
mtk = "mtk:main"
2024-06-27 14:45:39 -04:00
stage2 = "stage2:main"
2024-06-29 10:48:59 -04:00
da_parser = "Tools.da_parser:main"
brom_to_offs = "Tools.brom_to_offs:main"
2024-06-05 10:47:38 -04:00
[project.gui-scripts]
mtk_gui = "mtkclient.mtk_gui:main"
2024-06-05 10:47:38 -04:00
[tool.setuptools]
# See also the MANIFEST.in file.
packages = [
"mtkclient.config",
"mtkclient.Library",
"mtkclient.Library.Connection",
"mtkclient.Library.DA",
"mtkclient.Library.DA.legacy",
"mtkclient.Library.DA.legacy.extension",
"mtkclient.Library.DA.xflash",
"mtkclient.Library.DA.xflash.extension",
"mtkclient.Library.DA.xml",
"mtkclient.Library.DA.xml.extension",
"mtkclient.Library.Exploit",
"mtkclient.Library.Filesystem",
"mtkclient.Library.Hardware",
2024-07-01 04:03:56 -04:00
"Tools"
]
# We want to install all the files in the package directories...
include-package-data = true