forked from klmmr/mobsfpy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (37 loc) · 1.13 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
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='mobsfpy',
version='0.0.1-dev',
author='klmmr',
author_email='[email protected]',
description='Python CLI and wrapper for the Mobile Security Framework (MobSF) REST-API ',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/klmmr/mobsfpy',
packages=setuptools.find_packages(),
install_requires=[
'requests',
'requests-toolbelt',
],
entry_points={
'console_scripts': [
'mobsf = mobsfpy.cli:main'
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Security',
'Topic :: Utilities',
],
python_requires='>=3.7',
keywords='mobsf api cli android ios mobile security analysis',
)