Skip to content

Commit d968baa

Browse files
committed
fixed packaging issues
1 parent 22277ef commit d968baa

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# ChangeLog
22

3+
### 0.7.62
4+
- BUGFIX: setuptools - exclude assets from build
5+
36
### 0.7.61
47
- ADDED: Option --dump Dump the configured .apk
58
- ADDED: Option --debug-enable Enables the android:debuggable, android:allowBackup and android:extractNativeLibs Flags in the android applications manifest

mpt/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import mpt.config
66
from mpt.config import Config
77

8-
__version__ = '0.7.61'
8+
__version__ = '0.7.62'
99
HOME_FOLDER = expanduser("~")
1010
DEFAULT_MOBILE_FOLDER = os.path.join(HOME_FOLDER, "tools/MOBILE/")
1111
MPT_BIN = os.path.join(DEFAULT_MOBILE_FOLDER, 'bin')

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ dependencies = [
2727
"poetry"
2828
]
2929

30+
[tool.setuptools.packages.find]
31+
include = ["mpt*"]
32+
exclude = ["assets*", "tests*"]
3033

3134
[project.urls]
3235
Homepage = "https://github.com/ByteSnipers/mobile-pentest-toolkit"

0 commit comments

Comments
 (0)