18 lines
487 B
TOML
18 lines
487 B
TOML
[tool.poetry]
|
|
name = "android-class-shadowing-scanner"
|
|
version = "0.1.0"
|
|
description = "Detect if an Android application is in a situation that may lead to class spoofing."
|
|
authors = ["Jean-Marie Mineau <jean-marie.mineau@inria.fr>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
|
|
|
|
androguard = "^4.1.2"
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
scan = 'android_class_shadowing_scanner.__init__:main'
|