-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
51 lines (42 loc) · 1.58 KB
/
pyproject.toml
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>=42", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [{name = "Lucas Faudman", email = "[email protected]"}]
dynamic = ["classifiers"]
name = "apkscan"
version = "0.4.0"
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }
description = "Scan for secrets, endpoints, and other sensitive data after decompiling and deobfuscating Android files. (.apk, .xapk, .dex, .jar, .class, .smali, .zip, .aar, .arsc, .aab, .jadx.kts)"
keywords = [
"secret scanner", "jadx", "decompile", "android", "java", "security", "mobile", "decompiler",
"concurrency", "penetration-testing", "apktool", "security-tools", "fernflower", "cfr",
"procyon", "enjarify", "krakatau", "secret-scanning", "decompiler-java", "secret-scanner",
"apk", "xapk", "dex", "jar", "class", "smali", "zip", "aar", "arsc", "aab", "jadx.kts"
]
dependencies = [
"enjarify-adapter",
"pyyaml",
]
[project.urls]
Homepage = "https://github.com/LucasFaudman/apkscan.git"
Repository = "https://github.com/LucasFaudman/apkscan.git"
[project.scripts]
apkscan = "apkscan.main:main"
[project.optional-dependencies]
mypyc = ["mypy[mypyc]", "mypy_extensions"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
"*" = ["LICENSE"]
"apkscan.secret_locators" = ["*.json", "*.yaml", "*.yml", "*.toml"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_file = "src/apkscan/_version.py"
[tool.black]
line-length = 120
exclude = "src/apkscan/main.py"
force-exclude = "src/apkscan/main.py"