forked from google/grr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
197 lines (160 loc) · 5.89 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#!/usr/bin/env python
"""Setup configuration for the python grr modules."""
# pylint: disable=unused-variable
# pylint: disable=g-multiple-import
# pylint: disable=g-import-not-at-top
import ConfigParser
import os
import subprocess
from setuptools import find_packages, setup, Extension
from setuptools.command.develop import develop
from setuptools.command.install import install
from setuptools.command.sdist import sdist
IGNORE_GUI_DIRS = ["node_modules", "bower_components", "tmp"]
def find_data_files(source, ignore_dirs=None):
ignore_dirs = ignore_dirs or []
result = []
for directory, dirnames, files in os.walk(source):
dirnames[:] = [d for d in dirnames if d not in ignore_dirs]
files = [os.path.join(directory, x) for x in files]
result.append((directory, files))
return result
def run_make_files(make_docs=False,
make_ui_files=True,
force_compile_protos=False,
sync_artifacts=True):
"""Builds necessary assets from sources."""
if force_compile_protos:
# Clean and recompile the protobufs.
subprocess.check_call(["python", "makefile.py", "--clean"])
else:
subprocess.check_call(["python", "makefile.py"])
if sync_artifacts:
# Sync the artifact repo with upstream for distribution.
subprocess.check_call(["python", "makefile.py"], cwd="grr/artifacts")
if make_docs:
# Download the docs so they are available offline.
subprocess.check_call(["python", "makefile.py"], cwd="docs")
if make_ui_files:
subprocess.check_call(["npm", "install"], cwd="grr/gui/static")
subprocess.check_call(
["npm", "install", "-g", "bower", "gulp"], cwd="grr/gui/static")
subprocess.check_call(["bower", "update"], cwd="grr/gui/static")
subprocess.check_call(["gulp", "compile"], cwd="grr/gui/static")
def get_version():
config = ConfigParser.SafeConfigParser()
config.read(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "version.ini"))
return config.get("Version", "packageversion")
class Develop(develop):
def run(self):
run_make_files()
develop.run(self)
class Sdist(sdist):
"""Build sdist."""
user_options = sdist.user_options + [
("no-make-docs", None, "Don't build ascii docs when building the sdist."),
("no-make-ui-files", None, "Don't build UI JS/CSS bundles (AdminUI "
"won't work without them)."),
("no-compile-protos", None, "Don't clean protos, use existing _pb2's."),
("no-sync-artifacts", None,
"Don't sync the artifact repo. This is unnecessary for "
"clients and old client build OSes can't make the SSL connection."),
]
def initialize_options(self):
self.no_make_docs = None
self.no_sync_artifacts = None
self.no_make_ui_files = None
self.no_compile_protos = None
sdist.initialize_options(self)
def run(self):
run_make_files(
make_docs=not self.no_make_docs,
make_ui_files=not self.no_make_ui_files,
force_compile_protos=not self.no_compile_protos,
sync_artifacts=not self.no_sync_artifacts)
sdist.run(self)
class Install(install):
"""Allow some installation options."""
DEFAULT_TEMPLATE = """
# Autogenerated file. Do not edit. Written by setup.py.
CONFIG_FILE = "%(CONFIG_FILE)s"
"""
user_options = install.user_options + [
("config-file=", None,
"Specify the default location of the GRR config file."),
]
def initialize_options(self):
self.config_file = None
install.initialize_options(self)
def finalize_options(self):
if (self.config_file is not None and
not os.access(self.config_file, os.R_OK)):
raise RuntimeError(
"Default config file %s is not readable." % self.config_file)
install.finalize_options(self)
def run(self):
# Update the defaults if needed.
if self.config_file:
with open("grr/defaults.py", "wb") as fd:
fd.write(self.DEFAULT_TEMPLATE % dict(CONFIG_FILE=self.config_file))
install.run(self)
data_files = (
find_data_files("docs") + find_data_files("executables") +
find_data_files("install_data") + find_data_files("scripts") +
find_data_files("grr/artifacts") + find_data_files("grr/checks") +
find_data_files("grr/gui/static", ignore_dirs=IGNORE_GUI_DIRS) +
find_data_files("grr/gui/local/static",
ignore_dirs=IGNORE_GUI_DIRS) + ["version.ini"])
if "VIRTUAL_ENV" not in os.environ:
print "*****************************************************"
print " WARNING: You are not installing in a virtual"
print " environment. This configuration is not supported!!!"
print " Expect breakage."
print "*****************************************************"
setup_args = dict(
name="grr-response-core",
version=get_version(),
description="GRR Rapid Response",
license="Apache License, Version 2.0",
url="https://github.com/google/grr",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
ext_modules=[Extension(
"grr._semantic",
["accelerated/accelerated.c"],)],
cmdclass={
"develop": Develop,
"install": Install,
"sdist": Sdist,
},
install_requires=[
"cryptography==1.5.2",
"PyYAML==3.11",
"binplist==0.1.4",
"ipaddr==2.1.11",
"ipython==5.0.0",
"pip>=8.1.1",
"psutil==4.3.0",
"pyaml==15.8.2",
"pycrypto==2.6.1",
"python-dateutil==2.5.3",
"pytsk3==20160721",
"pytz==2016.4",
"requests==2.9.1",
"protobuf==3.3.0",
"Werkzeug==0.11.3",
"wheel==0.29",
"virtualenv==15.0.3",
],
extras_require={
# The following requirements are needed in Windows.
':sys_platform=="win32"': [
"WMI==1.4.9",
"pypiwin32==219",
],
},
# Data files used by GRR. Access these via the config_lib "resource" filter.
data_files=data_files)
setup(**setup_args)