|
7 | 7 | setuptools.setup( |
8 | 8 | name = "lamda", |
9 | 9 | version = "{}.{}".format(__version__, __build__), |
10 | | - url = "https://github.com/rev1si0n", |
| 10 | + description = "Android reverse engineering & automation framework", |
| 11 | + url = "https://github.com/rev1si0n/lamda", |
11 | 12 | author = "rev1si0n", |
12 | | - python_requires = ">=3.6,<4.0", |
| 13 | + python_requires = ">=3.6,<=3.10", |
13 | 14 | zip_safe = False, |
14 | 15 | extras_require = { |
15 | 16 | "frida": ["frida>=15.0.0,<16.0.0,!=15.1.15,!=15.1.16,!=15.1.17"], |
|
18 | 19 | ], |
19 | 20 | }, |
20 | 21 | install_requires= [ |
21 | | - "grpcio-tools>=1.35.0,<=1.40.0", |
22 | | - "grpc-interceptor>=0.13.0,<0.14.0", |
23 | | - "grpcio>=1.35.0,<=1.40.0", |
| 22 | + "grpcio-tools>=1.35.0,<1.48.0", |
| 23 | + "grpc-interceptor>=0.13.0,<0.14.2", |
| 24 | + "grpcio>=1.35.0,<1.48.0", |
24 | 25 | "asn1crypto>=1.0.0", |
25 | 26 | ], |
| 27 | + classifiers = [ |
| 28 | + "Environment :: Console", |
| 29 | + "Intended Audience :: Developers", |
| 30 | + "Intended Audience :: Information Technology", |
| 31 | + "Intended Audience :: Science/Research", |
| 32 | + "Programming Language :: Python :: 3", |
| 33 | + "Operating System :: Android", |
| 34 | + "Topic :: Security", |
| 35 | + ], |
26 | 36 | package_data = { |
27 | 37 | "lamda": ["*.py", "*.proto"], |
28 | 38 | "lamda.google.protobuf.compiler": ["*.proto"], |
|
0 commit comments