Skip to content

Commit 70659c8

Browse files
authored
Changes for deployment (#4770)
1 parent a7a7762 commit 70659c8

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

config/dpkg/changelog

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
plaso (20231223-1) unstable; urgency=low
1+
plaso (20231224-1) unstable; urgency=low
22

33
* Auto-generated
44

5-
-- Log2Timeline maintainers <[email protected]> Sat, 23 Dec 2023 06:52:35 +0100
5+
-- Log2Timeline maintainers <[email protected]> Sun, 24 Dec 2023 06:29:03 +0100

plaso/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
of log2timeline.
77
"""
88

9-
__version__ = '20231223'
9+
__version__ = '20231224'

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = plaso
3-
version = 20231223
3+
version = 20231224
44
description = Plaso (log2timeline) - Super timeline all the things
55
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.
66
long_description_content_type = text/plain

setup.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22
# -*- coding: utf-8 -*-
33
"""Installation and deployment script."""
44

5+
import glob
6+
import os
7+
58
from setuptools import setup
69

710

8-
setup()
11+
setup(
12+
data_files=[
13+
('share/plaso', glob.glob(os.path.join('data', '*.*'))),
14+
('share/plaso/formatters', glob.glob(os.path.join(
15+
'data', 'formatters', '*.yaml')))])

0 commit comments

Comments
 (0)