add new autopatcher
This commit is contained in:
parent
8f70343489
commit
bce66067b0
4 changed files with 1846 additions and 0 deletions
0
theseus_autopatcher/README.md
Normal file
0
theseus_autopatcher/README.md
Normal file
1821
theseus_autopatcher/poetry.lock
generated
Normal file
1821
theseus_autopatcher/poetry.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
23
theseus_autopatcher/pyproject.toml
Normal file
23
theseus_autopatcher/pyproject.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[project]
|
||||
name = "theseus-autopatcher"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = [
|
||||
{name = "Jean-Marie 'Histausse' Mineau",email = "histausse@protonmail.com"}
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.13,<4.0.0"
|
||||
dependencies = [
|
||||
"theseus-frida @ file:///home/histausse/workspace/dev/Project/android_of_theseus/frida"
|
||||
]
|
||||
|
||||
[tool.poetry]
|
||||
packages = [{include = "theseus_autopatcher", from = "src"}]
|
||||
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
theseus-autopatch = 'theseus_autopatcher.__init__:main'
|
||||
2
theseus_autopatcher/src/theseus_autopatcher/__init__.py
Normal file
2
theseus_autopatcher/src/theseus_autopatcher/__init__.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
def main():
|
||||
print("hello void")
|
||||
Loading…
Add table
Add a link
Reference in a new issue