-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
43 lines (41 loc) · 1.44 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import io
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
desc = f.read()
setup(
name='androset',
version=__import__('androset').__version__,
description='Auto setup android for pentest with auto push burp certificate and redirect traffic to burp with IP Table',
long_description=desc,
long_description_content_type='text/markdown',
author='Sourav Kalal',
author_email='[email protected]',
license='MIT license',
url='https://github.com/Anof-cyber/androset',
download_url='https://github.com/Anof-cyber/androset/archive/v1.1.zip',
zip_safe=False,
install_requires=[
'pyOpenSSL==23.1.1',
'termcolor==2.3.0'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Topic :: Security',
'License :: MIT license',
'Programming Language :: Python :: 3.4',
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'androset = androset:main'
]
},
keywords=['androset', 'bug bounty', 'android', 'pentesting', 'security'],
)