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 +43 -0
- ifrs16kit/__main__.py +5 -0
- ifrs16kit/core.py +1342 -0
- ifrs16kit-1.0.0.dist-info/METADATA +183 -0
- ifrs16kit-1.0.0.dist-info/RECORD +9 -0
- ifrs16kit-1.0.0.dist-info/WHEEL +5 -0
- ifrs16kit-1.0.0.dist-info/entry_points.txt +2 -0
- ifrs16kit-1.0.0.dist-info/licenses/LICENSE +21 -0
- ifrs16kit-1.0.0.dist-info/top_level.txt +1 -0
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
|
+
]
|