license: BSD-3-Clause
This commit is contained in:
5
.bsd3-license-header.tmpl
Normal file
5
.bsd3-license-header.tmpl
Normal file
@@ -0,0 +1,5 @@
|
||||
Copyright (c) $years, $owner
|
||||
All rights reserved.
|
||||
|
||||
This source code is licensed under the BSD-3-Clause license found in the
|
||||
LICENSE file in the root directory of this source tree.
|
||||
@@ -7,6 +7,7 @@ authors = [
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = "~=3.13"
|
||||
license = {text = "BSD-3-Clause"}
|
||||
|
||||
dependencies = [
|
||||
"PySide6~=6.8.0",
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
"""semeion semantic post-mortem forensics"""
|
||||
|
||||
__version__ = "0.0.0"
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
|
||||
# from .browserSqlite import BrowserSqliteEngine
|
||||
# from .forensicImage import ForensicImageEngine
|
||||
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
|
||||
# TODO: implement browser SQlite database converter -> semeion object
|
||||
# adapt browser2timesketch.py
|
||||
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
|
||||
# TODO: use pytsk to import forensic images and convert to semeion objects
|
||||
|
||||
__all__ = []
|
||||
@@ -1,3 +1,11 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
|
||||
# from .llm import LLMClient
|
||||
# from .qdrant import QdrantClient
|
||||
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
|
||||
# TODO: implement connection to embeddings provider
|
||||
|
||||
__all__ = []
|
||||
@@ -1,3 +1,11 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
|
||||
# TODO: implement connection to openAI compatible endpoint
|
||||
|
||||
__all__ = []
|
||||
@@ -1,3 +1,11 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
|
||||
# TODO: implement qdrant connector
|
||||
|
||||
__all__ = []
|
||||
@@ -1,3 +1,10 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
from .ui import MainWindow, SemeionInstance
|
||||
|
||||
def main():
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
from .main_window import MainWindow, SemeionInstance
|
||||
|
||||
__all__ = ["MainWindow", "SemeionInstance"]
|
||||
@@ -1,3 +1,10 @@
|
||||
#
|
||||
# Copyright (c) 2025, mstoeck3
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the BSD-3-Clause license found in the
|
||||
# LICENSE file in the root directory of this source tree.
|
||||
#
|
||||
from PySide6.QtWidgets import QApplication, QWidget, QVBoxLayout, QLabel, QPushButton, QGridLayout, QLineEdit, QToolBar
|
||||
from PySide6.QtGui import QAction
|
||||
from PySide6.QtCore import Qt
|
||||
|
||||
Reference in New Issue
Block a user