-
Notifications
You must be signed in to change notification settings - Fork 878
/
setup.py
52 lines (50 loc) · 1.61 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
#!/usr/bin/python3
# Copyright 2022 rev1si0n (lamda.devel@gmail.com). All rights reserved.
import setuptools
exec(open("lamda/__init__.py", "rt").read())
setuptools.setup(
name = "lamda",
version = "{}".format(__version__),
description = "Android reverse engineering & automation framework (Client API)",
url = "https://github.com/firerpa/lamda",
author = "rev1si0n",
python_requires = ">=3.6,<3.13",
zip_safe = False,
extras_require = {
"full": ["frida>=16.0.0,<17.0.0"],
":sys_platform == \"win32\"": [
"pyreadline==2.1",
],
},
install_requires= [
"grpcio-tools>=1.35.0,<=1.68.0",
"grpc-interceptor>=0.13.0,<=0.15.4",
"grpcio>=1.35.0,<=1.68.0",
"cryptography>=35.0.0",
"msgpack>=1.0.0",
"asn1crypto>=1.0.0,<2",
"pem==23.1.0",
],
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"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",
],
)