forked from google/grr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
145 lines (116 loc) · 4.2 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
#!/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", "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_ui_files=True, sync_artifacts=True):
"""Builds necessary assets from sources."""
if sync_artifacts:
# Sync the artifact repo with upstream for distribution.
subprocess.check_call(["python", "makefile.py"], cwd="grr/artifacts")
if make_ui_files:
subprocess.check_call(["npm", "install"], cwd="grr/gui/static")
subprocess.check_call(
["npm", "install", "-g", "gulp"], cwd="grr/gui/static")
subprocess.check_call(["gulp", "compile"], cwd="grr/gui/static")
def get_config():
config = ConfigParser.SafeConfigParser()
config.read(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "version.ini"))
return config
VERSION = get_config()
class Develop(develop):
def run(self):
run_make_files()
develop.run(self)
class Sdist(sdist):
"""Build sdist."""
user_options = sdist.user_options + [
("no-make-ui-files", None, "Don't build UI JS/CSS bundles (AdminUI "
"won't work without them)."),
("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_sync_artifacts = None
self.no_make_ui_files = None
sdist.initialize_options(self)
def run(self):
run_make_files(
make_ui_files=not self.no_make_ui_files,
sync_artifacts=not self.no_sync_artifacts)
sdist.run(self)
data_files = (
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=VERSION.get("Version", "packageversion"),
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=[
"binplist==0.1.4",
"cryptography==2.0.3",
"fleetspeak==0.0.4",
"grr-response-proto==%s" % VERSION.get("Version", "packagedepends"),
"ipaddr==2.1.11",
"ipython==5.0.0",
"pip>=8.1.1",
"psutil==4.3.0",
"python-dateutil==2.5.3",
"pytsk3==20160721",
"pytz==2016.4",
"PyYAML==3.11",
"requests==2.9.1",
"virtualenv==15.0.3",
"wheel==0.30",
"Werkzeug==0.11.3",
"yara-python==3.6.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)