Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 19 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[project]
name = "detectmatelibrary"
version = "0.2.0"
description = "DetectMate Library for log processing components"
readme = "README.md"
dynamic = ["authors"]
readme = {file = "README.md", content-type = "text/markdown"}
dynamic = ["version"]
authors = [{"name" = "André García Gómez"}, {"name" = "Viktor Beck"}, {"name" = "Thorina Boenke"},
{"name" = "Wolfgang Hotwagner"}, {"name" = "Anna Erdi"}, {"name" = "Ernst Leierzopf"}]
license = "EUPL-1.2"
requires-python = ">=3.12"
dependencies = [
"protobuf>=6.32.1",
Expand All @@ -25,17 +27,28 @@ dependencies = [
]

[dependency-groups]
# add dependencies in this section with: uv add --optional dev <package>
# install with all the dev dependencies: uv pip install -e .[dev]
# install with all the dev dependencies: uv pip install --group dev
dev = [
"mike>=2.1.3",
"prek>=0.2.8",
"pytest>=8.4.2",
"pytest-cov>=6.2.1",
]

[project.optional-dependencies]
polars-rtcompat = [
"polars[rtcompat]>=1.38.1",
]

[tool.setuptools.dynamic]
version = {attr = "detectmatelibrary.metadata.__version__"}

[project.urls]
Homepage = "https://ait-detectmate.github.io/DetectMateLibrary/latest"
Repository = "https://github.com/ait-detectmate/DetectMateLibrary"

[build-system]
requires = ["setuptools>=45.0", "wheel"]
requires = ["setuptools>=80", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
Expand Down
35 changes: 0 additions & 35 deletions setup.py

This file was deleted.

13 changes: 12 additions & 1 deletion src/detectmatelibrary/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,22 @@
from . import parsers
from . import schemas
from . import utils
from .metadata import (__authors__, __contact__, __copyright__, __date__, __deprecated__, __website__,
__license__, __status__, __version__)

__all__ = [
"common",
"detectors",
"parsers",
"schemas",
"utils"
"utils",
"__authors__",
"__contact__",
"__copyright__",
"__date__",
"__deprecated__",
"__website__",
"__license__",
"__status__",
"__version__"
]
12 changes: 12 additions & 0 deletions src/detectmatelibrary/metadata.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
__authors__ = ["André García Gómez", "Viktor Beck", "Thorina Boenke", "Wolfgang Hotwagner", "Anna Erdi",
"Ernst Leierzopf"]
__contact__ = "aecid@ait.ac.at"
__copyright__ = "Copyright 2026, AIT Austrian Institute of Technology GmbH"
__date__ = "2026/05/18"
__deprecated__ = False
__website__ = "https://aecid.ait.ac.at"
__license__ = "EUPL-1.2"
__status__ = "Development"
__version__ = "0.2.0"
__all__ = ['__authors__', '__contact__', '__copyright__', '__date__', '__deprecated__', '__website__',
'__license__', '__status__', '__version__']
31 changes: 29 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading