mirror of
https://gitlab.com/d3tn/ud3tn.git
synced 2026-08-13 12:33:27 +02:00
- Moves `tools/aap` + `tools/aap2` to `python-ud3tn-utils/aap*/bin/` to add the scripts to the python package - Adds a `main()` function to each script to reference it - Define `logger` as global variable - Adds a symbolic link to keep compatibility with existing tooling - Moves `tools/aap/aap_test.py` to `test/functional/` - Adds additional dependencies (pyd3tn, cbor) to python-ud3tn-utils and the corresponding nix package - Add scripts to python-ud3tn-utils `pyproject.toml` Signed-off-by: Maximilian Nitsch <maximilian.nitsch@d3tn.com>
7 lines
160 B
Python
7 lines
160 B
Python
# SPDX-License-Identifier: BSD-3-Clause OR Apache-2.0
|
|
# encoding: utf-8
|
|
"""Python library for the µD3TN project"""
|
|
|
|
from . import config
|
|
|
|
__all__ = ['config']
|