File: __init__.py

package info (click to toggle)
mfgtools 1.5.243-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,296 kB
  • sloc: cpp: 10,100; javascript: 546; python: 335; sh: 85; xml: 53; makefile: 18
file content (15 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
#
# Copyright 2024-2025 NXP
#
# SPDX-License-Identifier: BSD-3-Clause

"""Wrapper for libuuu."""

from .__version__ import __version__ as version
from .libuuu import LibUUU, UUUNotifyCallback, UUUShowConfig, UUUState

__author__ = """NXP"""
__version__ = version
__all__ = ["LibUUU", "UUUNotifyCallback", "UUUShowConfig", "UUUState"]