-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (46 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
60 lines (46 loc) · 1.39 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
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ApkPatcherX"
dynamic = ["version"]
authors = [
{ name = "RK_TECHNO_INDIA", email = "TechnoIndian786@gmail.com" }
]
description = "Smali Patcher ( Bypass 𒁍 SSL & Flutter SSL, VPN, USB Debugging, Screen Restrict, One Device Login, Spoof Info & Package Detection, Ads, AES Logs Inject, TG Patch, Pine HooK )"
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"requests",
"r2pipe",
"asn1crypto",
"multiprocess"
]
keywords = ["ApkPatcher"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[project.scripts]
ApkPatcher = "ApkPatcher.APK_PATCHER:RK_Techno_IND"
apkpatcher = "ApkPatcher.APK_PATCHER:RK_Techno_IND"
[tool.setuptools]
include-package-data = true
packages.find = {}
package-data = { ApkPatcher = [
"Utils/Files/AES.smali",
"Utils/Files/Hook.smali",
"Utils/Files/lib_Pairip_CoreX.so",
"Utils/Pine/config.json",
"Utils/Pine/libpine32",
"Utils/Pine/libpine64",
"Utils/Pine/loader.dex"
] }
[project.urls]
Homepage = "https://github.com/TechnoIndian/ApkPatcher"
Repository = "https://github.com/TechnoIndian/ApkPatcher.git"
Issues = "https://github.com/TechnoIndian/ApkPatcher/issues"
[tool.setuptools.dynamic]
version = { file = "VERSION" }