-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
setup.py
167 lines (155 loc) · 5.78 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#!/usr/bin/env python
import json
import logging
import os
from importlib import util
from os import path
from pathlib import Path
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py
class PreBuildCommand(build_py):
"""Pre-build command"""
def transform_graph_yaml_to_json(self) -> None:
"""Transforms YAML graph checks to JSON and copies them to build/lib"""
import yaml # can't be top-level, because it needs to be first installed via 'setup_requires'
graph_check_paths = ("checkov/*/checks/graph_checks",)
build_path = Path(self.build_lib)
src_path = Path()
for graph_check_path in graph_check_paths:
for yaml_file in src_path.glob(f"{graph_check_path}/**/*.yaml"):
json_file = (build_path / yaml_file).with_suffix(".json")
self.mkpath(str(json_file.parent))
json_file.write_text(json.dumps(yaml.safe_load(yaml_file.read_text())))
def run(self) -> None:
self.execute(self.transform_graph_yaml_to_json, ())
build_py.run(self)
# 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(
cmdclass={
"build_py": PreBuildCommand,
},
setup_requires=[
"pyyaml",
],
extras_require={
"dev": [
"pytest==5.3.1",
"coverage==5.5",
"coverage-badge",
"GitPython==3.1.41",
"bandit",
"jsonschema",
]
},
install_requires=[
"bc-python-hcl2==0.4.2",
"bc-detect-secrets==1.5.17",
"bc-jsonpath-ng==1.6.1",
"pycep-parser==0.4.1",
"tabulate>=0.9.0,<0.10.0",
"colorama>=0.4.3,<0.5.0",
"termcolor>=1.1.0,<2.4.0",
"junit-xml>=1.9,<2.0",
"dpath==2.1.3",
"pyyaml<7.0.0,>=6.0.0",
"boto3==1.34.25",
"gitpython>=3.1.30,<4.0.0",
"jmespath>=1.0.0,<2.0.0",
"tqdm<5.0.0,>=4.65.0",
"packaging>=23.0,<24.0",
"cloudsplaining<0.8.0,>=0.7.0",
"networkx<2.7",
"dockerfile-parse<3.0.0,>=2.0.0",
"docker>=6.0.1,<8.0.0",
"configargparse>=1.5.3,<2.0.0",
"argcomplete<4.0.0,>=3.0.0",
"typing-extensions<5.0.0,>=4.5.0",
"importlib-metadata>=6.0.0,<8.0.0",
"cachetools>=5.2.0,<6.0.0",
"cyclonedx-python-lib<7.0.0,>=6.0.0",
"packageurl-python<0.14.0,>=0.11.1",
"click<9.0.0,>=8.1.0",
"aiohttp<4.0.0,>=3.8.0",
"aiodns<4.0.0,>=3.0.0",
"aiomultiprocess>=0.9.0,<0.10.0",
"schema<=0.7.5",
"jsonschema<5.0.0,>=4.17.0",
"prettytable<4.0.0,>=3.6.0",
"charset-normalizer<4.0.0,>=3.1.0",
"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'",
"requests<3.0.0,>=2.28.0",
"yarl<2.0.0,>=1.9.1",
"openai<1.0.0",
"spdx-tools>=0.8.0,<0.9.0",
"license-expression<31.0.0,>=30.1.0",
"rustworkx>=0.13.0,<0.14.0",
"pydantic<3.0.0,>=2.0.0",
"botocore==1.34.25",
"urllib3",
],
dependency_links=[], # keep it empty, needed for pipenv-setup
license="Apache License 2.0",
name="checkov",
version=version,
python_requires=">=3.8",
description="Infrastructure as code static analysis",
author="bridgecrew",
author_email="[email protected]",
url="https://github.com/bridgecrewio/checkov",
packages=find_packages(
exclude=[
"dogfood_tests*",
"flake8_plugins*",
"integration_tests*",
"performance_tests*",
"tests*",
]
),
include_package_data=True,
package_data={
"checkov": ["py.typed"],
"checkov.common.util.templates": ["*.jinja2"],
"checkov.ansible.checks.graph_checks": ["**/*.json"],
"checkov.arm.checks.graph_checks": ["**/*.json"],
"checkov.bicep.checks.graph_checks": ["**/*.json"],
"checkov.cloudformation.checks.graph_checks": ["**/*.json"],
"checkov.dockerfile.checks.graph_checks": ["**/*.json"],
"checkov.github_actions.checks.graph_checks": ["**/*.json"],
"checkov.kubernetes.checks.graph_checks": ["**/*.json"],
"checkov.terraform.checks.graph_checks": ["**/*.json"],
"checkov.cdk.checks": [
"python/*.yaml",
"typescript/*.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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Build Tools",
"Typing :: Typed",
],
)