forked from nccgroup/ScoutSuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·63 lines (59 loc) · 1.82 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
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# distutils/setuptools install script for Scout Suite
import os
from setuptools import setup, find_packages
# Package info
NAME = 'ScoutSuite'
ROOT = os.path.dirname(__file__)
VERSION = __import__(NAME).__version__
# Requirements
requirements = []
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')) as f:
for r in f.readlines():
requirements.append(r.strip())
# Setup
setup(
name=NAME,
version=VERSION,
description='Scout Suite, a multi-cloud security auditing tool',
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
author='NCC Group',
url='https://github.com/nccgroup/ScoutSuite',
entry_points={
'console_scripts': [
'scout = ScoutSuite.__main__:run_from_cli',
]
},
packages=find_packages(),
package_data={
'ScoutSuite.data': [
'*.json'
],
'ScoutSuite.output': [
'*.html',
'*.js',
'*.css',
'*.zip'
],
'ScoutSuite.providers': [
'*.json'
]
},
include_package_data=True,
install_requires=requirements,
license='GNU General Public License v2 (GPLv2)',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
)