mtkclient/pyproject.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

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]
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"
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"
[tool.setuptools]
# See also the MANIFEST.in file.
# We want to install all the files in the package directories...
include-package-data = true
script-files = ["mtk", "stage2", "mtk_gui"]