30 lines
811 B
TOML
30 lines
811 B
TOML
[project]
|
|
name = "theseus-frida"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Jean-Marie Mineau",email = "jean-marie.mineau@centralesupelec.fr"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.12,<4.0.0"
|
|
dependencies = [
|
|
"frida (==16.7.4)",
|
|
"frida-tools (>=13.6.1,<14.0.0)",
|
|
"androguard (>=4.1.2,<5.0.0)"
|
|
]
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
collect-runtime-data = 'theseus_frida.__init__:main'
|
|
|
|
[tool.poetry]
|
|
include = [
|
|
{ path = "theseus_frida/hook.js", format = ["sdist", "wheel"] },
|
|
{ path = "theseus_frida/StackConsumer.dex.b64", format = ["sdist", "wheel"] },
|
|
{ path = "theseus_frida/frida-server-16.7.0-android-x86_64.xz", format = ["sdist", "wheel"] }
|
|
]
|