Skip to content

Commit

Permalink
build: migrate to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
branchvincent committed Oct 20, 2024
1 parent a00e432 commit 3337b3c
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 41 deletions.
5 changes: 0 additions & 5 deletions MANIFEST.in

This file was deleted.

34 changes: 34 additions & 0 deletions pyproject.toml
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"
36 changes: 0 additions & 36 deletions setup.py

This file was deleted.

0 comments on commit 3337b3c

Please sign in to comment.