forked from log2timeline/plaso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·272 lines (220 loc) · 8.03 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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Installation and deployment script."""
import glob
import os
import pkg_resources
import sys
try:
from setuptools import find_packages, setup
except ImportError:
from distutils.core import find_packages, setup
try:
from distutils.command.bdist_msi import bdist_msi
except ImportError:
bdist_msi = None
try:
from distutils.command.bdist_rpm import bdist_rpm
except ImportError:
bdist_rpm = None
try:
from setuptools.commands.sdist import sdist
except ImportError:
from distutils.command.sdist import sdist
version_tuple = (sys.version_info[0], sys.version_info[1])
if version_tuple < (3, 7):
print(f'Unsupported Python version: {sys.version:s}, version 3.7 or higher '
f'required.')
sys.exit(1)
# Change PYTHONPATH to include plaso so that we can get the version.
sys.path.insert(0, '.')
import plaso # pylint: disable=wrong-import-position
if not bdist_msi:
BdistMSICommand = None
else:
class BdistMSICommand(bdist_msi):
"""Custom handler for the bdist_msi command."""
# pylint: disable=invalid-name
def run(self):
"""Builds an MSI."""
# Command bdist_msi does not support the library version, neither a date
# as a version but if we suffix it with .1 everything is fine.
self.distribution.metadata.version += '.1'
bdist_msi.run(self)
if not bdist_rpm:
BdistRPMCommand = None
else:
class BdistRPMCommand(bdist_rpm):
"""Custom handler for the bdist_rpm command."""
# pylint: disable=invalid-name
def _make_spec_file(self):
"""Generates the text of an RPM spec file.
Returns:
list[str]: lines of the RPM spec file.
"""
# Note that bdist_rpm can be an old style class.
if issubclass(BdistRPMCommand, object):
spec_file = super(BdistRPMCommand, self)._make_spec_file()
else:
spec_file = bdist_rpm._make_spec_file(self)
python_package = 'python3'
description = []
requires = ''
summary = ''
in_description = False
python_spec_file = []
for line in iter(spec_file):
if line.startswith('Summary: '):
summary = line[9:]
elif line.startswith('BuildRequires: '):
line = (f'BuildRequires: {python_package:s}-setuptools, '
f'{python_package:s}-devel')
elif line.startswith('Requires: '):
requires = line[10:]
continue
elif line.startswith('%description'):
in_description = True
elif line.startswith('python setup.py build'):
if python_package == 'python3':
line = '%py3_build'
else:
line = '%py2_build'
elif line.startswith('python setup.py install'):
if python_package == 'python3':
line = '%py3_install'
else:
line = '%py2_install'
elif line.startswith('%files'):
lines = [
'%files -n %{name}-data',
'%defattr(644,root,root,755)',
'%license LICENSE',
'%doc ACKNOWLEDGEMENTS AUTHORS README',
'%{_datadir}/%{name}/*',
'',
f'%files -n {python_package:s}-%{{name}}',
'%defattr(644,root,root,755)',
'%license LICENSE',
'%doc ACKNOWLEDGEMENTS AUTHORS README']
lines.extend([
'%{python3_sitelib}/plaso/*.py',
'%{python3_sitelib}/plaso/*/*.py',
'%{python3_sitelib}/plaso/*/*.yaml',
'%{python3_sitelib}/plaso/*/*/*.py',
'%{python3_sitelib}/plaso/*/*/*.yaml',
'%{python3_sitelib}/plaso*.egg-info/*',
'',
'%exclude %{_prefix}/share/doc/*',
'%exclude %{python3_sitelib}/plaso/__pycache__/*',
'%exclude %{python3_sitelib}/plaso/*/__pycache__/*',
'%exclude %{python3_sitelib}/plaso/*/*/__pycache__/*'])
python_spec_file.extend(lines)
break
elif line.startswith('%prep'):
in_description = False
python_spec_file.extend([
'%package -n %{name}-data',
f'Summary: Data files for {summary:s}',
'',
'%description -n %{name}-data'])
python_spec_file.extend(description)
python_spec_file.append(f'%package -n {python_package:s}-%{{name}}')
python_summary = f'Python 3 module of {summary:s}'
python_spec_file.extend([
f'Requires: plaso-data >= %{{version}} {requires:s}',
f'Summary: {python_summary:s}',
'',
f'%description -n {python_package:s}-%{{name}}'])
python_spec_file.extend(description)
python_spec_file.extend([
'%package -n %{name}-tools',
f'Requires: {python_package:s}-plaso >= %{{version}}',
f'Summary: Tools for {summary:s}',
'',
'%description -n %{name}-tools'])
python_spec_file.extend(description)
elif in_description:
# Ignore leading white lines in the description.
if not description and not line:
continue
description.append(line)
python_spec_file.append(line)
python_spec_file.extend([
'',
'%files -n %{name}-tools',
'%{_bindir}/*.py'])
return python_spec_file
def parse_requirements_from_file(path):
"""Parses requirements from a requirements file.
Args:
path (str): path to the requirements file.
Returns:
list[str]: name and optional version information of the required packages.
"""
requirements = []
if os.path.isfile(path):
with open(path, 'r') as file_object:
file_contents = file_object.read()
for requirement in pkg_resources.parse_requirements(file_contents):
try:
name = str(requirement.req)
except AttributeError:
name = str(requirement)
if not name.startswith('pip '):
requirements.append(name)
return requirements
plaso_description = (
'Plaso (log2timeline) - Super timeline all the things')
plaso_long_description = (
'Plaso (log2timeline) is a framework to create super timelines. Its '
'purpose is to extract timestamps from various files found on typical '
'computer systems and aggregate them.')
command_classes = {'sdist_test_data': sdist}
if BdistMSICommand:
command_classes['bdist_msi'] = BdistMSICommand
if BdistRPMCommand:
command_classes['bdist_rpm'] = BdistRPMCommand
setup(
name='plaso',
version=plaso.__version__,
description=plaso_description,
long_description=plaso_long_description,
long_description_content_type='text/plain',
license='Apache License, Version 2.0',
url='https://github.com/log2timeline/plaso',
maintainer='Log2Timeline maintainers',
maintainer_email='[email protected]',
cmdclass=command_classes,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=find_packages('.', exclude=[
'docs', 'tests', 'tests.*', 'tools', 'utils']),
package_dir={
'plaso': 'plaso'
},
include_package_data=True,
package_data={
'plaso.parsers': ['*.yaml'],
'plaso.parsers.esedb_plugins': ['*.yaml'],
'plaso.parsers.olecf_plugins': ['*.yaml'],
'plaso.parsers.plist_plugins': ['*.yaml'],
'plaso.parsers.winreg_plugins': ['*.yaml'],
'plaso.preprocessors': ['*.yaml']
},
zip_safe=False,
scripts=glob.glob(os.path.join('tools', '[a-z]*.py')),
data_files=[
('share/plaso', glob.glob(
os.path.join('data', '*.*'))),
('share/plaso/formatters', glob.glob(
os.path.join('data', 'formatters', '*.yaml'))),
('share/doc/plaso', [
'ACKNOWLEDGEMENTS', 'AUTHORS', 'LICENSE', 'README']),
],
install_requires=parse_requirements_from_file('requirements.txt'),
tests_require=parse_requirements_from_file('test_requirements.txt'),
)