-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.52 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
[build-system]
requires = ["flit_core >=3.9,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "apk-patchx"
version = "22.11.2025.1"
description = "Android APK manipulation toolkit with Frida gadget injection support"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Kaif"}
]
keywords = ["android", "apk", "reverse-engineering", "frida", "patching"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Software Distribution"
]
requires-python = ">=3.8"
dependencies = [
"click>=8.0.0",
"requests>=2.25.0",
"tqdm>=4.60.0",
"colorama>=0.4.4"
]
[project.urls]
Homepage = "https://github.com/kaifcodec/apk-patchx"
Repository = "https://github.com/kaifcodec/apk-patchx.git"
Issues = "https://github.com/kaifcodec/apk-patchx/issues"
[project.scripts]
apk-patchx = "apk_patchx.__main__:main"
[tool.flit.sdist]
exclude = ["tests/", "docs/", ".github/", ".git", "rm_pycache", "che.py", ".gitignore"]