2021-08-01 16:25:44 -04:00
|
|
|
[build-system]
|
|
|
|
requires = [
|
|
|
|
"setuptools>=42",
|
|
|
|
"wheel",
|
2023-10-20 08:48:34 -04:00
|
|
|
]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
2023-12-14 08:09:04 -05:00
|
|
|
name = "mtkclient"
|
|
|
|
description = "Mediatek reverse engineering and flashing tools"
|
|
|
|
maintainers = [
|
|
|
|
{name = "Bjoern Kerler", email = "info@revskills.de"}
|
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
license = {file = "LICENSE"}
|
2023-12-14 08:41:42 -05:00
|
|
|
version = "2.0.0"
|
2023-12-14 08:09:04 -05:00
|
|
|
requires-python = ">= 3.8"
|
2023-10-20 08:48:34 -04:00
|
|
|
dependencies = [
|
2021-08-01 16:25:44 -04:00
|
|
|
"pyusb",
|
|
|
|
"pycryptodome",
|
2024-05-28 01:38:40 -04:00
|
|
|
"pycryptodomex",
|
2021-08-01 16:25:44 -04:00
|
|
|
"colorama",
|
2021-12-31 07:00:23 -05:00
|
|
|
"shiboken6",
|
|
|
|
"pyside6",
|
2024-05-28 01:38:40 -04:00
|
|
|
"mock",
|
|
|
|
"pyserial",
|
|
|
|
"fusepy"
|
2021-08-01 16:25:44 -04:00
|
|
|
]
|
2023-12-14 08:09:04 -05:00
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Programming Language :: Python :: 3",
|
2024-05-28 01:38:40 -04:00
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
2023-12-14 08:09:04 -05:00
|
|
|
"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"
|
|
|
|
|
2023-12-14 08:18:25 -05:00
|
|
|
[tool.setuptools]
|
|
|
|
# See also the MANIFEST.in file.
|
|
|
|
# We want to install all the files in the package directories...
|
2024-05-28 01:38:40 -04:00
|
|
|
include-package-data = true
|
|
|
|
script-files = ["mtk", "stage2", "mtk_gui"]
|