-
-
Notifications
You must be signed in to change notification settings - Fork 498
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: replace pipes for python 3.13 (#92)
* fix: replace pipes for python 3.13 * build: migrate to pyproject.toml
- Loading branch information
1 parent
3202df9
commit 1abc5d6
Showing
4 changed files
with
35 additions
and
42 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" |