[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 "] readme = "README.md" license = "AGPL-3.0-or-later" [tool.poetry.dependencies] python = "^3.12" androguard = "^4.1.2" SecretStorage = { version = "^3.3.3", optional = true } matplotlib = "^3.9.2" [tool.poetry.extras] secretstorage = ["SecretStorage"] [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] scan = 'android_class_shadowing_scanner.__init__:main' collect-scan = 'android_class_shadowing_scanner.__init__:collect_to_db' check-smali = 'android_class_shadowing_scanner.__init__:check_smali' data-mining = 'android_class_shadowing_scanner.__init__:data_mining'