Skip to content

Commit

Permalink
Changes for deployment (#4770)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored Dec 24, 2023
1 parent a7a7762 commit 70659c8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions config/dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plaso (20231223-1) unstable; urgency=low
plaso (20231224-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline maintainers <[email protected]> Sat, 23 Dec 2023 06:52:35 +0100
-- Log2Timeline maintainers <[email protected]> Sun, 24 Dec 2023 06:29:03 +0100
2 changes: 1 addition & 1 deletion plaso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
of log2timeline.
"""

__version__ = '20231223'
__version__ = '20231224'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')))])

0 comments on commit 70659c8

Please sign in to comment.