ifrs16kit 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ifrs16kit/__init__.py ADDED
@@ -0,0 +1,43 @@
1
+ """
2
+ ifrs16kit — IFRS 16 auditor re-performance (LIQUID edition).
3
+
4
+ Public API
5
+ ----------
6
+ import ifrs16kit as lease
7
+ # or: from ifrs16kit import (
8
+ LeaseInputs, cross_check,
9
+ build_template, read_template, build_calculation_workbook,
10
+ COUNTRIES, FREQUENCIES,
11
+ )
12
+
13
+ Command line
14
+ ------------
15
+ ifrs16kit # guided interactive flow
16
+ ifrs16kit --demo # CALISMA golden case end-to-end
17
+ """
18
+
19
+ from .core import (
20
+ LeaseInputs,
21
+ create_input,
22
+ create_calculation,
23
+ demo,
24
+ cross_check,
25
+ build_template,
26
+ read_template,
27
+ build_calculation_workbook,
28
+ build_inputs_sheet,
29
+ print_summary,
30
+ COUNTRIES,
31
+ FREQUENCIES,
32
+ MAX_PERIODS,
33
+ main,
34
+ run,
35
+ )
36
+
37
+ __version__ = "1.0.0"
38
+
39
+ __all__ = [
40
+ "LeaseInputs", "create_input", "create_calculation", "demo", "cross_check", "build_template", "read_template",
41
+ "build_calculation_workbook", "build_inputs_sheet", "print_summary",
42
+ "COUNTRIES", "FREQUENCIES", "MAX_PERIODS", "main", "run", "__version__",
43
+ ]
ifrs16kit/__main__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Allow `python -m ifrs16kit` to invoke the CLI."""
2
+ from .core import main
3
+
4
+ if __name__ == "__main__":
5
+ main()