forked from bridgecrewio/checkov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
130 lines (126 loc) · 4.53 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#!/usr/bin/env python
import logging
import os
from importlib import util
from os import path
import setuptools
from setuptools import setup
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
logger = logging.getLogger(__name__)
spec = util.spec_from_file_location(
"checkov.version", os.path.join("checkov", "version.py")
)
# noinspection PyUnresolvedReferences
mod = util.module_from_spec(spec)
spec.loader.exec_module(mod) # type: ignore
version = mod.version # type: ignore
setup(
extras_require={
"dev": [
"pytest==5.3.1",
"coverage==5.5",
"coverage-badge",
"GitPython==3.1.7",
"bandit",
"jsonschema",
]
},
install_requires=[
"bc-python-hcl2==0.3.51",
"bc-detect-secrets==1.4.9",
"bc-jsonpath-ng==1.5.8",
"deep-merge",
"tabulate",
"colorama",
"termcolor",
"junit-xml>=1.9",
"dpath>=1.5.0,<2",
"pyyaml>=5.4.1",
"boto3>=1.17",
"gitpython",
"jmespath",
"tqdm",
"update-checker",
"semantic-version",
"packaging",
"cloudsplaining>=0.4.3",
"networkx<2.7",
"dockerfile-parse",
"docker",
"configargparse",
"argcomplete",
"policyuniverse",
"typing-extensions>=4.1.0",
"importlib-metadata>=0.12",
"cachetools",
"cyclonedx-python-lib<4.0.0,>=2.4.0",
"packageurl-python",
"click>=8.0.0",
"aiohttp",
"aiodns",
"aiomultiprocess",
"jsonschema<5.0.0,>=4.6.0",
"prettytable>=3.0.0",
"pycep-parser==0.3.9",
"charset-normalizer",
"pyston-autoload==2.3.5; python_version < '3.11' and (sys_platform == 'linux' or sys_platform == 'darwin') and platform_machine == 'x86_64' and implementation_name == 'cpython'",
"pyston==2.3.5; python_version < '3.11' and (sys_platform == 'linux' or sys_platform == 'darwin') and platform_machine == 'x86_64' and implementation_name == 'cpython'",
"schema",
"requests>=2.26.0",
"yarl",
"igraph"
],
dependency_links=[], # keep it empty, needed for pipenv-setup
license="Apache License 2.0",
name="checkov",
version=version,
python_requires=">=3.7",
description="Infrastructure as code static analysis",
author="bridgecrew",
author_email="meet@bridgecrew.io",
url="https://github.com/bridgecrewio/checkov",
packages=setuptools.find_packages(exclude=["tests*", "integration_tests*"]),
include_package_data=True,
package_dir={
"checkov.bicep.checks.graph_checks": "checkov/bicep/checks/graph_checks",
"checkov.cloudformation.checks.graph_checks": "checkov/cloudformation/checks/graph_checks",
"checkov.dockerfile.checks.graph_checks": "checkov/dockerfile/checks/graph_checks",
"checkov.github_actions.checks.graph_checks": "checkov/github_actions/checks/graph_checks",
"checkov.terraform.checks.graph_checks": "checkov/terraform/checks/graph_checks",
"checkov.kubernetes.checks.graph_checks": "checkov/kubernetes/checks/graph_checks",
},
package_data={
"checkov": ["py.typed"],
"checkov.bicep.checks.graph_checks": ["*.yaml"],
"checkov.common.util.templates": ["*.jinja2"],
"checkov.dockerfile.checks.graph_checks": ["*.yaml"],
"checkov.github_actions.checks.graph_checks": ["*.yaml"],
"checkov.terraform.checks.graph_checks": [
"aws/*.yaml",
"gcp/*.yaml",
"azure/*.yaml",
],
"checkov.kubernetes.checks.graph_checks": ["*.yaml"],
},
scripts=["bin/checkov", "bin/checkov.cmd"],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
"Topic :: Software Development :: Build Tools",
"Typing :: Typed",
],
)