File: __init__.py

package info (click to toggle)
python-pint 0.25.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,940 kB
  • sloc: python: 20,478; makefile: 148
file content (17 lines) | stat: -rw-r--r-- 454 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
pint.facets.system
~~~~~~~~~~~~~~~~~~

Adds pint the capability to system of units.

:copyright: 2022 by Pint Authors, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

from __future__ import annotations

from .definitions import SystemDefinition
from .objects import System
from .registry import GenericSystemRegistry, SystemRegistry

__all__ = ["SystemDefinition", "System", "SystemRegistry", "GenericSystemRegistry"]