-
-
Notifications
You must be signed in to change notification settings - Fork 570
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (46 loc) · 1.35 KB
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
[ build-system ]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[ project ]
name = "edlclient"
version = "3.62"
description = "Qualcomm reverse engineering and flashing tools"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
authors = [
{name = "B. Kerler", email = "info@revskills.de"}
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"colorama>=0.4.6",
"docopt",
"pyusb>=1.3.1",
"pyserial>=3.5",
"lxml>=6.0.2",
"pylzma",
"pycryptodome>=3.23.0",
"Exscript>=2.6.32",
"paramiko>=4.0.0,<5",
"requests>=2.34.2",
"passlib",
]
[ project.urls ]
Homepage = "https://github.com/bkerler/edl"
"Bug Tracker" = "https://github.com/bkerler/edl/issues"
[ project.scripts ]
edl = "edlclient.edl:run"
qc_diag = "edlclient.Tools.qc_diag:main"
sierrakeygen = "edlclient.Tools.sierrakeygen:main"
boottodwnload = "edlclient.Tools.boottodwnload:main"
enableadb = "edlclient.Tools.enableadb:main"
fhloaderparse = "edlclient.Tools.fhloaderparse:main"
beagle_to_loader = "edlclient.Tools.beagle_to_loader:main"
[ tool.setuptools ]
include-package-data = true
zip-safe = false
[ tool.setuptools.packages.find ]