-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lkpatcher"
version = "4.0.0"
authors = [
{ name = "Roger Ortiz", email = "me@r0rt1z2.com" }
]
description = "Advanced tool for patching and analyzing MediaTek bootloader (LK) images."
readme = "README.md"
requires-python = ">=3.8.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: System :: Boot",
"Topic :: System :: Recovery Tools",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
homepage = "https://github.com/R0rt1z2/lkpatcher"
documentation = "https://github.com/R0rt1z2/lkpatcher/blob/master/README.md"
issues = "https://github.com/R0rt1z2/lkpatcher/issues"
[tool.mypy]
python_version = "3.8"
disallow_untyped_defs = true
disallow_incomplete_defs = true