File tree Expand file tree Collapse file tree 4 files changed +35
-42
lines changed
Expand file tree Collapse file tree 4 files changed +35
-42
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1212from contextlib import closing
1313from shutil import which
1414from pathlib import Path
15- from pipes import quote
15+ from shlex import quote
1616from urllib .request import urlopen
1717from zipfile import ZipFile
1818
Original file line number Diff line number Diff line change 1+ [project ]
2+ name = " apkleaks"
3+ description = " Scanning APK file for URIs, endpoints & secrets."
4+ readme = " README.md"
5+ authors = [{
name =
" dwisiswant0" ,
email =
" [email protected] " }]
6+ classifiers = [
7+ " Development Status :: 3 - Alpha" ,
8+ " Natural Language :: English" ,
9+ " Topic :: Security" ,
10+ " Topic :: Utilities" ,
11+ ]
12+ license = { text = " Apache License 2.0" }
13+ requires-python = " >=3.8"
14+ dynamic = [" dependencies" , " version" ]
15+
16+ [project .scripts ]
17+ apkleaks = " apkleaks.cli:main"
18+
19+ [project .urls ]
20+ Homepage = " https://github.com/dwisiswant0/apkleaks/"
21+
22+ [tool .setuptools .dynamic ]
23+ version = { file = " VERSION" }
24+ dependencies = { file = " requirements.txt" }
25+
26+ [tool .setuptools .package-data ]
27+ "*" = [" *.json" ]
28+
29+ [tool .setuptools .packages .find ]
30+ include = [" apkleaks*" , " config*" ]
31+
32+ [build-system ]
33+ requires = [" setuptools>=68" ]
34+ build-backend = " setuptools.build_meta"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments