forked from firerpa/lamda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.51 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
#!/usr/bin/python3
# Copyright 2022 rev1si0n ([email protected]). All rights reserved.
import setuptools
exec(open("lamda/__init__.py", "rt").read())
setuptools.setup(
name = "lamda",
version = "{}.{}".format(__version__, __build__),
description = "Android reverse engineering & automation framework",
url = "https://github.com/rev1si0n/lamda",
author = "rev1si0n",
python_requires = ">=3.6,<=3.10",
zip_safe = False,
extras_require = {
"frida": ["frida>=15.0.0,<16.0.0,!=15.1.15,!=15.1.16,!=15.1.17"],
":sys_platform == \"win32\"": [
"pyreadline==2.1",
],
},
install_requires= [
"grpcio-tools>=1.35.0,<1.48.0",
"grpc-interceptor>=0.13.0,<0.14.2",
"grpcio>=1.35.0,<1.48.0",
"asn1crypto>=1.0.0",
],
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: Android",
"Topic :: Security",
],
package_data = {
"lamda": ["*.py", "*.proto"],
"lamda.google.protobuf.compiler": ["*.proto"],
"lamda.google.protobuf": ["*.proto"],
"lamda.rpc": ["*.proto"],
},
packages = [
"lamda.google.protobuf.compiler",
"lamda.google.protobuf",
"lamda.rpc",
"lamda",
],
)