This repository has been archived by the owner on Dec 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (56 loc) · 1.75 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
64
65
66
67
68
69
import os
from codecs import open
import setuptools
path = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(path, 'README.rst')) as fd:
long_desc = fd.read()
setuptools.setup(
name='cinq-auditor-cloudtrail',
use_scm_version=True,
entry_points={
'cloud_inquisitor.plugins.auditors': [
'auditor_cloudtrail = cinq_auditor_cloudtrail:CloudTrailAuditor'
]
},
packages=setuptools.find_packages(),
setup_requires=['setuptools_scm'],
install_requires=[
'cloud_inquisitor~=2.0',
],
extras_require={
'dev': [],
'test': [],
},
# Metadata for the project
description='CloudTrail auditor',
long_description=long_desc,
url='https://github.com/RiotGames/cinq-auditor-cloudtrail/',
author='Riot Games Security',
author_email='[email protected]',
license='Apache 2.0',
classifiers=[
# Current project status
'Development Status :: 4 - Beta',
# Audience
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
# License information
'License :: OSI Approved :: Apache Software License',
# Supported python versions
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
# Frameworks used
'Framework :: Flask',
'Framework :: Sphinx',
# Supported OS's
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
# Extra metadata
'Environment :: Console',
'Natural Language :: English',
'Topic :: Security',
'Topic :: Utilities',
],
keywords='cloud security',
)