forked from forseti-security/forseti-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·158 lines (135 loc) · 4.31 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
#!/usr/bin/env python
# Copyright 2017 The Forseti Security Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Setup script for Forseti Security tools."""
import os
import sys
from install.util import build_protos
from setuptools import find_packages
from setuptools import setup
from setuptools.command.install import install
import google.cloud.forseti
FORSETI_VERSION = google.cloud.forseti.__version__
NAMESPACE_PACKAGES = [
'google',
'google.cloud'
]
REQUIRED_PACKAGES = [
# Installation related.
'anytree==2.4.3',
'google-api-python-client==1.7.10',
'google-auth==1.6.3',
'google-auth-httplib2==0.0.3',
'idna==2.8',
'Jinja2==2.10.1',
'jmespath==0.9.3',
'netaddr==0.7.19',
'pyyaml==4.2b4',
'python-graph-core==1.8.2',
'python-dateutil==2.7.5',
'ratelimiter==1.2.0.post0',
'retrying==1.3.3',
'requests[security]==2.21.0',
'sendgrid==5.6.0',
'simple-crypt==4.1.7',
'unicodecsv==0.14.1',
# Setup related.
'grpcio>=1.22.0',
'grpcio-tools>=1.22.0',
'protobuf==3.13.0',
# Testing related.
'parameterized==0.6.1',
'ruamel.yaml==0.15.37',
'pylint==1.9.4',
'pylint-quotes==0.2.1',
'PyMySQL==0.9.3',
'SQLAlchemy==1.2.18',
'sqlalchemy-migrate==0.11.0'
]
OPTIONAL_PACKAGES = {
'profiler': [
'google-cloud-profiler==1.0.8'
],
'mailjet': [
'mailjet-rest==1.3.3'
],
'endtoend_tests': [
'google-cloud-storage==1.25.0',
'pytest==5.3.3'
]
}
if sys.version_info.major < 3:
sys.exit('Sorry, Python 2 is not supported.')
def build_forseti_protos(clean_only=False):
"""Clean and optionally Build protos.
Args:
clean_only (boolean): Whether to only clean previously built protos.
"""
abs_path = os.path.abspath(__file__)
build_protos.clean(abs_path)
if not clean_only:
build_protos.make_proto(abs_path)
class BuildProtosCommand(install):
"""A command to build protos in all children directories."""
def run(self):
build_forseti_protos()
class CleanProtosCommand(install):
"""A command to clean protos in all children directories."""
def run(self):
build_forseti_protos(clean_only=True)
class PostInstallCommand(install):
"""Post installation command."""
def run(self):
build_forseti_protos()
install.do_egg_install(self)
setup(
name='forseti-security',
version=FORSETI_VERSION,
description='Forseti Security tools',
author='Google LLC.',
author_email='[email protected]',
url='https://github.com/forseti-security/forseti-security',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License'
],
cmdclass={
'build_protos': BuildProtosCommand,
'clean_protos': CleanProtosCommand,
'install': PostInstallCommand,
},
install_requires=REQUIRED_PACKAGES,
setup_requires=REQUIRED_PACKAGES,
tests_require=REQUIRED_PACKAGES,
extras_require=OPTIONAL_PACKAGES,
packages=find_packages(exclude=[
'*.tests', '*.tests.*', 'tests.*', 'tests']),
include_package_data=True,
package_data={
'': ['cloud/forseti/common/email_templates/*.jinja',
'cloud/forseti/common/gcp_api/discovery_documents/*.json']
},
namespace_packages=NAMESPACE_PACKAGES,
license='Apache 2.0',
keywords='gcp google cloud platform security tools',
entry_points={
'console_scripts': [
'forseti_enforcer = google.cloud.forseti.stubs:RunForsetiEnforcer',
'forseti_server = google.cloud.forseti.stubs:RunForsetiServer',
'forseti = google.cloud.forseti.stubs:RunForsetiCli',
]
},
zip_safe=False, # Set to False: apputils doesn't like zip_safe eggs
)