linearmoney

A library for working with money algebraically.

 1"""A library for working with money algebraically."""
 2
 3from __future__ import annotations
 4
 5__all__ = [
 6    "vector",
 7    "scalar",
 8    "data",
 9    "exceptions",
10    "resources",
11    "mixins",
12    "cache",
13    "ext",
14]
15
16
17import logging
18
19# Setup logging
20logger = logging.getLogger(__name__)
21
22logger.info("linearmoney root logger initialized.")
23
24
25from . import (  # noqa: E402
26    vector,
27    cache,
28    data,
29    exceptions,
30    scalar,
31    mixins,
32    resources,
33)
34
35__version__ = "0.1.3"
36
37CLDR_VERSION = resources.get_package_resource("cldr_version")