This repository has been archived by the owner on Apr 9, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
74 lines (64 loc) · 2.32 KB
/
setup.py
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python3
# Snoopdroid
# Copyright (C) 2019 Claudio Guarnieri
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import os
from setuptools import setup
from snoopdroid.constants import __version__
description = "Extract all apks from an Android device and check for malicious apps"
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as handle:
long_description = handle.read()
requires = (
"rsa",
"tqdm",
"halo",
"requests",
"terminaltables",
"adb",
)
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="snoopdroid",
version=__version__,
author="Claudio Guarnieri",
author_email="[email protected]",
description=description,
long_description=long_description,
scripts=["bin/snoopdroid",],
install_requires=requires,
packages=["snoopdroid",],
package_data=get_package_data('snoopdroid'),
include_package_data=True,
keywords="security android",
license="GPLv3",
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Security",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Android",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Environment :: Console",
],
)