-
-
Notifications
You must be signed in to change notification settings - Fork 535
/
pyproject.toml
64 lines (58 loc) · 1.65 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mtkclient"
description = "Mediatek reverse engineering and flashing tools"
maintainers = [
{name = "Bjoern Kerler", email = "[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
version = "2.0.2"
requires-python = ">= 3.8"
dependencies = [
"pyusb",
"pycryptodome",
"pycryptodomex",
"colorama",
"shiboken6",
"pyside6",
"mock",
"pyserial",
"fusepy"
]
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"
[project.scripts]
mtk = "mtkclient.mtk:main"
stage2 = "mtkclient.stage2:main"
da_parser = "mtkclient.Tools.da_parser:main"
brom_to_offs = "mtkclient.Tools.brom_to_offs:main"
[project.gui-scripts]
mtk_gui = "mtkclient.mtk_gui:main"
[tool.hatch.build.targets.sdist]
include = [
"mtkclient/Loader/*.bin",
"mtkclient/Loader/Preloader/*.bin",
"mtkclient/payloads/*.bin",
"mtkclient/Windows/*.dll",
"mtkclient/gui/images/*.png",
"Tools/*.py"
]
[tool.hatch.build.targets.wheel.force-include]
"Tools/brom_to_offs.py" = "mtkclient/Tools/brom_to_offs.py"
"Tools/da_parser.py" = "mtkclient/Tools/da_parser.py"
"mtk.py" = "mtkclient/mtk.py"
"mtk_gui.py" = "mtkclient/mtk_gui.py"
"stage2.py" = "mtkclient/stage2.py"
"LICENSE" = "LICENSE"
"README.md" = "README.md"