-
-
Notifications
You must be signed in to change notification settings - Fork 498
/
Copy pathpyproject.toml
34 lines (28 loc) · 847 Bytes
/
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
[project]
name = "apkleaks"
description = "Scanning APK file for URIs, endpoints & secrets."
readme = "README.md"
authors = [{ name = "dwisiswant0", email = "[email protected]" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Topic :: Security",
"Topic :: Utilities",
]
license = { text = "Apache License 2.0" }
requires-python = ">=3.8"
dynamic = ["dependencies", "version"]
[project.scripts]
apkleaks = "apkleaks.cli:main"
[project.urls]
Homepage = "https://github.com/dwisiswant0/apkleaks/"
[tool.setuptools.dynamic]
version = { file = "VERSION" }
dependencies = { file = "requirements.txt" }
[tool.setuptools.package-data]
"*" = ["*.json"]
[tool.setuptools.packages.find]
include = ["apkleaks*", "config*"]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"