mvt/setup.py

68 lines
1.9 KiB
Python
Raw Normal View History

2021-07-16 06:05:01 +00:00
# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021 MVT Project Developers.
# See the file 'LICENSE' for usage and copying permissions, or find a copy at
# https://github.com/mvt-project/mvt/blob/main/LICENSE
import os
2021-07-30 09:40:09 +00:00
from setuptools import find_packages, setup
2021-07-16 06:05:01 +00:00
__package_name__ = "mvt"
2021-08-01 11:59:59 +00:00
__version__ = "1.0.15"
2021-07-16 06:05:01 +00:00
__description__ = "Mobile Verification Toolkit"
this_directory = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(this_directory, "README.md")
with open(readme_path, encoding="utf-8") as handle:
long_description = handle.read()
requires = (
# Base dependencies:
2021-07-25 10:03:45 +00:00
"click>=8.0.1",
"rich>=10.6.0",
"tld>=0.12.6",
"tqdm>=4.61.2",
"requests>=2.26.0",
"simplejson>=3.17.3",
2021-07-16 06:05:01 +00:00
# iOS dependencies:
2021-07-25 10:03:45 +00:00
"biplist>=1.0.3",
"iOSbackup>=0.9.912",
2021-07-16 06:05:01 +00:00
# Android dependencies:
2021-07-25 10:03:45 +00:00
"adb-shell>=0.4.0",
"libusb1>=1.9.3",
2021-07-16 06:05:01 +00:00
)
def get_package_data(package):
walk = [(dirpath.replace(package + os.sep, "", 1), filenames)
for dirpath, dirnames, filenames in os.walk(package)
if not os.path.exists(os.path.join(dirpath, "__init__.py"))]
filepaths = []
for base, filenames in walk:
filepaths.extend([os.path.join(base, filename)
for filename in filenames])
return {package: filepaths}
setup(
name=__package_name__,
version=__version__,
description=__description__,
long_description=long_description,
2021-07-18 14:31:25 +00:00
long_description_content_type="text/markdown",
url="https://github.com/mvt-project/mvt",
2021-07-16 06:05:01 +00:00
entry_points={
"console_scripts": [
"mvt-ios = mvt.ios:cli",
"mvt-android = mvt.android:cli",
],
},
install_requires=requires,
packages=find_packages(),
package_data=get_package_data("mvt"),
include_package_data=True,
keywords="security mobile forensics malware",
license="MVT",
classifiers=[
],
)