-
Notifications
You must be signed in to change notification settings - Fork 102
/
setup.py
62 lines (45 loc) · 1.47 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
"""The setup.py file for Cloud Container Attack Tool."""
from setuptools import setup
LONG_DESCRIPTION = """
Cloud Container Attack Tool is a tool for testing security of container environments.
""".strip()
SHORT_DESCRIPTION = """
Cloud Container Attack Tool is a tool for testing security of container environments.""".strip()
DEPENDENCIES = [
'boto3',
'docker',
'PyInquirer',
'pyfiglet',
'fire',
'tabulate'
]
TEST_DEPENDENCIES = []
VERSION = '0.1.0'
URL = 'https://github.com/RhinoSecurityLabs/ccat'
setup(
name='ccat',
version=VERSION,
description=SHORT_DESCRIPTION,
long_description=LONG_DESCRIPTION,
url=URL,
author='Rhino Assessment Team',
author_email='[email protected]',
license='BSD 3-Clause',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Pentesters',
'Topic :: Penetration Testing :: Tool :: Python Modules',
'License :: OSI Approved :: BSD 3-Clause',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
],
keywords='AWS ECS ECR EKS GCP AZURE kubernetes k8s docker container pentesting tool',
packages=['modules'],
install_requires=DEPENDENCIES,
tests_require=TEST_DEPENDENCIES,
)