From 70659c839bb684260865f2f30a51d9a2b9b17a61 Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Sun, 24 Dec 2023 07:47:53 +0100 Subject: [PATCH] Changes for deployment (#4770) --- config/dpkg/changelog | 4 ++-- plaso/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 9 ++++++++- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/config/dpkg/changelog b/config/dpkg/changelog index 1e8acc1a4f..3f50cbb462 100644 --- a/config/dpkg/changelog +++ b/config/dpkg/changelog @@ -1,5 +1,5 @@ -plaso (20231223-1) unstable; urgency=low +plaso (20231224-1) unstable; urgency=low * Auto-generated - -- Log2Timeline maintainers Sat, 23 Dec 2023 06:52:35 +0100 + -- Log2Timeline maintainers Sun, 24 Dec 2023 06:29:03 +0100 diff --git a/plaso/__init__.py b/plaso/__init__.py index e45abd48c5..2844e04978 100644 --- a/plaso/__init__.py +++ b/plaso/__init__.py @@ -6,4 +6,4 @@ of log2timeline. """ -__version__ = '20231223' +__version__ = '20231224' diff --git a/setup.cfg b/setup.cfg index 2d6239b45a..43e3e7a9e0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = plaso -version = 20231223 +version = 20231224 description = Plaso (log2timeline) - Super timeline all the things 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. long_description_content_type = text/plain diff --git a/setup.py b/setup.py index 888841c528..91d3d6f111 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,14 @@ # -*- coding: utf-8 -*- """Installation and deployment script.""" +import glob +import os + from setuptools import setup -setup() +setup( + data_files=[ + ('share/plaso', glob.glob(os.path.join('data', '*.*'))), + ('share/plaso/formatters', glob.glob(os.path.join( + 'data', 'formatters', '*.yaml')))])