-
Notifications
You must be signed in to change notification settings - Fork 245
/
setup.py
executable file
·51 lines (48 loc) · 1.62 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
#!/usr/bin/python3
#-*- encoding: Utf-8 -*-
from os.path import dirname, realpath
from setuptools import setup
SCRIPT_DIR = dirname(realpath(__file__))
README_PATH = SCRIPT_DIR + '/README.md'
with open(README_PATH) as fd:
long_description = fd.read()
setup(name = 'qcsuper',
version = '2.0.1',
description = ' QCSuper is a tool communicating with Qualcomm-based phones and modems, allowing to capture raw 2G/3G/4G radio frames, among other things',
author = 'P1 Security - Marin Moulinier',
author_email = '',
long_description = long_description,
long_description_content_type = 'text/markdown',
entry_points = {
'console_scripts': [
'qcsuper = qcsuper.main:main'
]
},
url = 'https://github.com/P1sec/QCSuper',
requires = ['pyserial(>=3.5)', 'pyusb(>=1.2.1)', 'crcmod(>=1.7)', 'pycrate(>=0.7.0)'],
install_requires = [],
include_package_data = True,
package_data = {
'qcsuper.inputs.adb_bridge': ['*'],
'qcsuper.inputs.adb_wsl2_bridge': ['*'],
'qcsuper.inputs.external': ['*'],
'qcsuper.inputs.external.adb': ['*'],
'qcsuper.inputs.external.adb.lib64': ['*'],
'qcsuper.inputs.adb_bridge': ['*']
},
packages = [
'qcsuper',
'qcsuper.inputs',
'qcsuper.inputs.adb_bridge',
'qcsuper.inputs.adb_wsl2_bridge',
'qcsuper.inputs.external',
'qcsuper.inputs.external.adb',
'qcsuper.inputs.external.adb.lib64',
'qcsuper.protocol',
'qcsuper.modules',
'qcsuper.modules.efs_shell_commands'
],
package_dir = {
'qcsuper': 'src'
}
)