-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
40 lines (35 loc) · 983 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.9"
name = "mptsec"
dynamic = ["version"]
description = "Mobile Pentest Toolkit (MPT)"
authors = [
{name = "Alexander Subbotin", email = "dev@bytesnipers.com"},
]
readme = "README.md"
keywords = ["MPT", "Mobile", "Pentesting"]
classifiers = [
"Programming Language :: Python :: 3",
'Operating System :: OS Independent'
]
dependencies = [
"GitPython",
"colorlog",
"colorama",
"tabulate",
"frida-tools",
"simple_term_menu",
"netifaces",
"poetry"
]
[project.urls]
Homepage = "https://github.com/ByteSnipers/mobile-pentest-toolkit"
Repository = "https://github.com/ByteSnipers/mobile-pentest-toolkit"
Changelog = "https://github.com/ByteSnipers/mobile-pentest-toolkit/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "mpt.settings.__version__"}
[project.scripts]
mpt = "mpt.console:cli"