-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
37 lines (32 loc) · 908 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mpt"
dynamic = ["version"]
description = "Mobile Pentest Toolkit (MPT)"
authors = [
{name = "Alexander Subbotin", email = "[email protected]"},
]
readme = "README.md"
keywords = ["MPT", "mobile"]
classifiers = [
"Programming Language :: Python :: 3",
'Operating System :: OS Independent'
]
dependencies = [
"GitPython",
"colorlog",
"colorama",
"tabulate",
"frida-tools",
"simple_term_menu"
]
[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.console.__version__"}
[project.scripts]
mpt = "mpt.console:cli"