Merge pull request #1021 from real-LiHua/main

Fix ModuleNotFoundError
This commit is contained in:
Bjoern Kerler 2024-05-28 18:25:10 +02:00 committed by GitHub
commit 31819b814d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,15 +18,18 @@ requires-python = ">= 3.8"
dependencies = [
"pyusb",
"pycryptodome",
"pycryptodomex",
"colorama",
"shiboken6",
"pyside6",
"mock"
"mock",
"pyserial",
"fusepy"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv3 License",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ["mediatek", "mtk", "flashing", "reverse engineering", "firmware"]
@ -35,14 +38,8 @@ keywords = ["mediatek", "mtk", "flashing", "reverse engineering", "firmware"]
Repository = "https://github.com/bkerler/mtkclient.git"
Issues = "https://github.com/bkerler/mtkclient/issues"
[project.scripts]
mtk = "mtk:main"
stage2 = "stage2:main"
[project.gui-scripts]
mtk_gui = "mtk_gui:main"
[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"]