SuperModelingFactory 0.2.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.
Files changed (79) hide show
  1. ExcelMaster/ExcelFormatTool.py +487 -0
  2. ExcelMaster/ExcelMaster.py +917 -0
  3. ExcelMaster/Template.py +525 -0
  4. ExcelMaster/Utility.py +233 -0
  5. ExcelMaster/__init__.py +3 -0
  6. Modeling_Tool/Core/Binning_Tool.py +1608 -0
  7. Modeling_Tool/Core/Binning_Tool.pyi +48 -0
  8. Modeling_Tool/Core/Check_DuckDB_Compatibility.py +835 -0
  9. Modeling_Tool/Core/Json_Data_Converter.py +621 -0
  10. Modeling_Tool/Core/Model_Registry_Tool.py +199 -0
  11. Modeling_Tool/Core/ODPS_Tool.py +284 -0
  12. Modeling_Tool/Core/Slope_Tool.py +356 -0
  13. Modeling_Tool/Core/Slope_Tool.pyi +31 -0
  14. Modeling_Tool/Core/XOR_Encryptor.py +207 -0
  15. Modeling_Tool/Core/XOR_Encryptor.pyi +26 -0
  16. Modeling_Tool/Core/__init__.py +99 -0
  17. Modeling_Tool/Core/kDataFrame.py +228 -0
  18. Modeling_Tool/Core/kDataFrame.pyi +43 -0
  19. Modeling_Tool/Core/sample_weight_utils.py +77 -0
  20. Modeling_Tool/Core/utils.py +2672 -0
  21. Modeling_Tool/Eval/Evaluation_Tool.py +1452 -0
  22. Modeling_Tool/Eval/Evaluation_Tool.pyi +47 -0
  23. Modeling_Tool/Eval/Model_Eval_Tool.py +2548 -0
  24. Modeling_Tool/Eval/Model_Eval_Tool.pyi +37 -0
  25. Modeling_Tool/Eval/__init__.py +54 -0
  26. Modeling_Tool/Eval/evaluate_model.py +2008 -0
  27. Modeling_Tool/Eval/evaluate_model.pyi +50 -0
  28. Modeling_Tool/Eval/weighted_eval_utils.py +326 -0
  29. Modeling_Tool/Explainability/Coalition_Structure.py +305 -0
  30. Modeling_Tool/Explainability/Model_Explainer.py +743 -0
  31. Modeling_Tool/Explainability/__init__.py +24 -0
  32. Modeling_Tool/Feature/Distribution_Tool.py +509 -0
  33. Modeling_Tool/Feature/Distribution_Tool.pyi +42 -0
  34. Modeling_Tool/Feature/Feature_Insights.py +762 -0
  35. Modeling_Tool/Feature/Feature_Insights.pyi +33 -0
  36. Modeling_Tool/Feature/PSI_Tool.py +1195 -0
  37. Modeling_Tool/Feature/PSI_Tool.pyi +29 -0
  38. Modeling_Tool/Feature/WOE_Engine_Feature_Patch.py +355 -0
  39. Modeling_Tool/Feature/__init__.py +40 -0
  40. Modeling_Tool/Model/Backward_Tool.py +778 -0
  41. Modeling_Tool/Model/Backward_Tool.pyi +45 -0
  42. Modeling_Tool/Model/GBM_Search_Tool.py +251 -0
  43. Modeling_Tool/Model/GBM_Tool.py +1610 -0
  44. Modeling_Tool/Model/GBM_Tool.pyi +90 -0
  45. Modeling_Tool/Model/LRM_Tool.py +1198 -0
  46. Modeling_Tool/Model/LRM_Tool.pyi +47 -0
  47. Modeling_Tool/Model/__init__.py +61 -0
  48. Modeling_Tool/Sample/Distribution_Adaptation.py +131 -0
  49. Modeling_Tool/Sample/Distribution_Adaptation.pyi +30 -0
  50. Modeling_Tool/Sample/Reject_Infer.py +413 -0
  51. Modeling_Tool/Sample/Reject_Infer.pyi +43 -0
  52. Modeling_Tool/Sample/Sample_Split.py +520 -0
  53. Modeling_Tool/Sample/Sample_Split.pyi +43 -0
  54. Modeling_Tool/Sample/__init__.py +31 -0
  55. Modeling_Tool/UAT/UAT_Consistency_Checker.py +1180 -0
  56. Modeling_Tool/UAT/__init__.py +19 -0
  57. Modeling_Tool/WOE/WOE_Adapter.py +204 -0
  58. Modeling_Tool/WOE/WOE_Adapter.pyi +21 -0
  59. Modeling_Tool/WOE/WOE_Master.py +491 -0
  60. Modeling_Tool/WOE/WOE_Master.pyi +40 -0
  61. Modeling_Tool/WOE/WOE_Monotone_Binner.py +3324 -0
  62. Modeling_Tool/WOE/WOE_Monotone_Binner.pyi +71 -0
  63. Modeling_Tool/WOE/WOE_Plot_Tool.py +919 -0
  64. Modeling_Tool/WOE/WOE_Plot_Tool.pyi +46 -0
  65. Modeling_Tool/WOE/WOE_Report_Builder.py +214 -0
  66. Modeling_Tool/WOE/WOE_Report_Builder.pyi +24 -0
  67. Modeling_Tool/WOE/WOE_Tool.py +1094 -0
  68. Modeling_Tool/WOE/WOE_Tool.pyi +41 -0
  69. Modeling_Tool/WOE/__init__.py +86 -0
  70. Modeling_Tool/WOE/plot_woe_tool.py +290 -0
  71. Modeling_Tool/WOE/plot_woe_tool.pyi +25 -0
  72. Modeling_Tool/__init__.py +176 -0
  73. Report/Report_Tool.py +380 -0
  74. Report/__init__.py +3 -0
  75. supermodelingfactory-0.2.0.dist-info/METADATA +268 -0
  76. supermodelingfactory-0.2.0.dist-info/RECORD +79 -0
  77. supermodelingfactory-0.2.0.dist-info/WHEEL +5 -0
  78. supermodelingfactory-0.2.0.dist-info/licenses/LICENSE +102 -0
  79. supermodelingfactory-0.2.0.dist-info/top_level.txt +3 -0
@@ -0,0 +1,79 @@
1
+ ExcelMaster/ExcelFormatTool.py,sha256=iFmwUrUcEQi80pHUDv6yKSo-m6CTV3S5QcXkI3UrAiI,18246
2
+ ExcelMaster/ExcelMaster.py,sha256=VFtGwY3fvfTH17IgdL47hu4Hzc3-f7nsykBe_ewYUbY,37512
3
+ ExcelMaster/Template.py,sha256=0EzCnvhQojy6Bunpt8TfXL4SnTr1IPWI1b7gvVeH5Ng,23384
4
+ ExcelMaster/Utility.py,sha256=Jm8pdvMz_9uuqt11MWw0Sc4ydmwRkrD0NFKjeTS5uog,8252
5
+ ExcelMaster/__init__.py,sha256=FQ3TTMVkzuaRutA1dc6ADqSeNxDYpjVieFTBWvm31U4,84
6
+ Modeling_Tool/__init__.py,sha256=dFSFBQzrUhBHYafGPq1OS6EIJMQPkeaMMAaVUI8NDS0,4069
7
+ Modeling_Tool/Core/Binning_Tool.py,sha256=zPJ5qXfG5PY_fwFz4J3EDiw1M34A7gwS85AE73SMFxw,58491
8
+ Modeling_Tool/Core/Binning_Tool.pyi,sha256=MfmHyO_GlKESTEQWz6Z1uW98MjL9A3GON3wjcBJ4ykE,3889
9
+ Modeling_Tool/Core/Check_DuckDB_Compatibility.py,sha256=3FWYwvOW4lwAgIwY_Se8LrnjyK0mxCi9uUIFYyiNVh0,35403
10
+ Modeling_Tool/Core/Json_Data_Converter.py,sha256=RJrF8rYMmVaV3J0c9rzVLnfUncAh8IT6PjRqX3Lv-Xs,24524
11
+ Modeling_Tool/Core/Model_Registry_Tool.py,sha256=_NwOiy5Wl-VY_nCfzdrqEeBB4NUf-OnD4iXYuqOCZQg,6031
12
+ Modeling_Tool/Core/ODPS_Tool.py,sha256=qaA8X0JEhabD3zHuIEzbQI9QYk6Tvr7njSDwA00vvyg,11474
13
+ Modeling_Tool/Core/Slope_Tool.py,sha256=HocnbizoLmr-siezK3CpdGc8oacMTLWWhKDH5o8yYb8,8866
14
+ Modeling_Tool/Core/Slope_Tool.pyi,sha256=sILgnRLLqGezs4JLEXzUd3Fn3VaS--qIfXW11o1bELE,1339
15
+ Modeling_Tool/Core/XOR_Encryptor.py,sha256=Rl8AISyD6bQbwSQPGrp-yyZQlU25sDp3WlobKCWxpHs,8688
16
+ Modeling_Tool/Core/XOR_Encryptor.pyi,sha256=fIeQIeV2ETBV4b7RlalXHFtlNr_lWEEezws3dk-DXwA,1123
17
+ Modeling_Tool/Core/__init__.py,sha256=WlG3N0bwXfEH8PiAD6z5-4mZoIoOaneLqbgjhy2J7qs,2732
18
+ Modeling_Tool/Core/kDataFrame.py,sha256=rvaiFGSex7m4OxHBPi-0QPaL9H0F-8QnK1WqqbBCd0c,6983
19
+ Modeling_Tool/Core/kDataFrame.pyi,sha256=v36QfPlC_JxjTqivddecCH_WQe44YDyjhjd9gYV3-QY,2097
20
+ Modeling_Tool/Core/sample_weight_utils.py,sha256=UlQruse0Fc9Kc9k1QwYD5_TsMybGICEYayJz6-GuwI4,2436
21
+ Modeling_Tool/Core/utils.py,sha256=2YDg3BeocdrOs1-d7sVuEaMfkJsGDuFFKa_7JDzm_2c,69834
22
+ Modeling_Tool/Eval/Evaluation_Tool.py,sha256=f0nntETkAnYGx9IS7NAcWvNyl1oPuGWwEcnkWmfPCJA,55829
23
+ Modeling_Tool/Eval/Evaluation_Tool.pyi,sha256=1---FZt5MqqtJ5EqRVh5SStjOOB9LGBg_lNySCMJ6gw,4886
24
+ Modeling_Tool/Eval/Model_Eval_Tool.py,sha256=nJtY9CCfkv0GazGMPIi2B9dAruXLCfiv_0fnBpptGrU,108248
25
+ Modeling_Tool/Eval/Model_Eval_Tool.pyi,sha256=o3vj_rIBGYkJlJ54xoH2MV-09FLxii9ddgarhDt8GPg,4086
26
+ Modeling_Tool/Eval/__init__.py,sha256=VgWGToSLr8eQES4_GQw-Xa1XjULJewcrz6Esg_YuQQ0,1489
27
+ Modeling_Tool/Eval/evaluate_model.py,sha256=oE0N-iZd4lKM_faTMZw3braWmG9L9UY23fZ6IR-iMJ8,71147
28
+ Modeling_Tool/Eval/evaluate_model.pyi,sha256=-RntQiWbG8OZngISVQStf0UC9bS2vqdjEWTUgiBZUTc,3436
29
+ Modeling_Tool/Eval/weighted_eval_utils.py,sha256=k6bVrJ5eK1SoWWv0kfN5I91_ixcih4kMvvZM8hfsckc,12562
30
+ Modeling_Tool/Explainability/Coalition_Structure.py,sha256=FoRXGew9hpm4BVGaXsQys0kRJLwUqUzADuwtV8jz-I4,10884
31
+ Modeling_Tool/Explainability/Model_Explainer.py,sha256=YsuE-HICW_S9NjQhYeqxJDTrYE5IW8lrBcjlFsj47jM,33532
32
+ Modeling_Tool/Explainability/__init__.py,sha256=W6bWbBykaN8D1A2wNsiS-90AA8zWl17zceSoZG9r0vs,1001
33
+ Modeling_Tool/Feature/Distribution_Tool.py,sha256=IUGF9j8qhHNhlogJdfRd1dE-wam7yKWCeS5MM5bODqk,16572
34
+ Modeling_Tool/Feature/Distribution_Tool.pyi,sha256=4m1OOJybT6kjRwzzp5pr129MTS_Ejc9ixHcUOFkby-Y,2215
35
+ Modeling_Tool/Feature/Feature_Insights.py,sha256=esKx2z3HGm7hmGMDVKR9QEzgAeQIsbSph4CIYLbSUp0,26519
36
+ Modeling_Tool/Feature/Feature_Insights.pyi,sha256=N9IQs3Kc1UzFpZ9jTbsFWOXTc8fYsHZ2zT2xBJSIZ1g,2156
37
+ Modeling_Tool/Feature/PSI_Tool.py,sha256=M4qr0wd_8eMgG8Nuhg98wjFFsUff63y146xiQrLiUZs,43651
38
+ Modeling_Tool/Feature/PSI_Tool.pyi,sha256=RTv0XLaf06k47KcOsIB4cJ2S3ABpP92HF0BA7jxrKUQ,3043
39
+ Modeling_Tool/Feature/WOE_Engine_Feature_Patch.py,sha256=E3ix5Unt8NjC0l9JraE5OSo4PdzW5oGtel0yrgdvAzA,14477
40
+ Modeling_Tool/Feature/__init__.py,sha256=M6w2ZfNG8WtqW3fpi2ne9fezI32v-2xcn0osDT4ztjU,995
41
+ Modeling_Tool/Model/Backward_Tool.py,sha256=J5ePF8-LPdIWm3lMrYQZKXAzJpPBWZBHdxlt5An1Pvs,24856
42
+ Modeling_Tool/Model/Backward_Tool.pyi,sha256=GJxGcx8YteILoUxP7VYV7Qj7c9CENhJfMzXTw9YWpnY,3672
43
+ Modeling_Tool/Model/GBM_Search_Tool.py,sha256=QKA7sJGfE53FXB7qd16wN7xoMDFAePL5cM46HIA354g,11980
44
+ Modeling_Tool/Model/GBM_Tool.py,sha256=06XK3opgHet2i_Ekty5t1LQrCFD0obQ29P6JEAiw5ls,46779
45
+ Modeling_Tool/Model/GBM_Tool.pyi,sha256=IRXG0M7DBYModDKPTHbTM1g2BBiIXDMUklcJW3jmJcA,4519
46
+ Modeling_Tool/Model/LRM_Tool.py,sha256=-RqOh7QzCShfKVzGr-We7IuefLO2hSooS2I37_C_gJI,44830
47
+ Modeling_Tool/Model/LRM_Tool.pyi,sha256=nt9e6y21dG9f-kkQMmgtXTYXYfQi_SIV65OwfrmBt9k,2619
48
+ Modeling_Tool/Model/__init__.py,sha256=bHZJgzyZQKxPD71g40iRgfE4gOVPW7YklaIMDmrhT7o,1707
49
+ Modeling_Tool/Sample/Distribution_Adaptation.py,sha256=HbgzcqjDj08-WvtNoglQW97xaWkrYwA-yWX8x-wkOlg,4530
50
+ Modeling_Tool/Sample/Distribution_Adaptation.pyi,sha256=f1cy9qYJNXxWyOLN2GhP3X0XLoo8JzBh1Oji-wDTz3E,1474
51
+ Modeling_Tool/Sample/Reject_Infer.py,sha256=hGckaNdGH-guByat_47_UvF7TFLlTqyfH9kYVpz4JmU,12329
52
+ Modeling_Tool/Sample/Reject_Infer.pyi,sha256=21CG9M7Oh1JxLW5IqiOjgnUhwj5BRtmYMaeq0X12FyA,2461
53
+ Modeling_Tool/Sample/Sample_Split.py,sha256=r1rc--g5rdj95giOFmW2gLXAN4ViJGfHeEU0dDxhEAs,16777
54
+ Modeling_Tool/Sample/Sample_Split.pyi,sha256=DxX0iWhsj42waVy97xOYlXO-Qh5pwSkPprqFF_AyU5M,2691
55
+ Modeling_Tool/Sample/__init__.py,sha256=pLq90at5_XMqj4N7cZxanuxjl74s6n74PdCHmYBiIKc,704
56
+ Modeling_Tool/UAT/UAT_Consistency_Checker.py,sha256=cbDRUT9t-ys6ceRKmhYqzt5rTheyNIyv_yXMXvZbFAc,61217
57
+ Modeling_Tool/UAT/__init__.py,sha256=4BlDi_PGVIA0Qvuc4xQbo7fAnIci9LEVXev4VDvBXXo,342
58
+ Modeling_Tool/WOE/WOE_Adapter.py,sha256=XXiMp8wuN5soq6xsDmTjKsUSRhsbw_-dyVG-2AWGP9s,7747
59
+ Modeling_Tool/WOE/WOE_Adapter.pyi,sha256=4KXAzfYMdw59zU7e91WE9tb9Xl3Z__7wfJ4iO_FKKss,910
60
+ Modeling_Tool/WOE/WOE_Master.py,sha256=5_zKOYECopqFpgNFmPDXHtTOgY9qMhoMbyroOJVmhXw,19026
61
+ Modeling_Tool/WOE/WOE_Master.pyi,sha256=cq8a4mErHzyG5TsevY8U-f32uD-ANfhwAm2EasEucMc,2397
62
+ Modeling_Tool/WOE/WOE_Monotone_Binner.py,sha256=R8cTRka6KRv3H7CICL37_HpWcsOtsnP-WQSv9dDW7ws,161406
63
+ Modeling_Tool/WOE/WOE_Monotone_Binner.pyi,sha256=aEMU3mRdsi7TkFy4cUWdrpvlGJDN9i3E2DGc5Is1A6Q,5223
64
+ Modeling_Tool/WOE/WOE_Plot_Tool.py,sha256=fCK57tkCi6kv9tV7PJbVeU47LTD_pg6r1wlMU8hYDyc,31737
65
+ Modeling_Tool/WOE/WOE_Plot_Tool.pyi,sha256=e-uyn4gFjDTjBVaLeiZQnTSzH-Nhv8OoBxP9EiV3aXA,2833
66
+ Modeling_Tool/WOE/WOE_Report_Builder.py,sha256=SzE0CGNXrmBOoBr6fd6IM5qeF1OQXGMvhmp3bFvDSGw,8875
67
+ Modeling_Tool/WOE/WOE_Report_Builder.pyi,sha256=0xJM1PQNWWqQGxnnvwJ8ZAIO09OXzmYfvJN8Jk-1Bm8,1322
68
+ Modeling_Tool/WOE/WOE_Tool.py,sha256=x0h5-vsF8rJeb5gp6e2B5H1iWD1wFxEsdwzVH7S8WOE,36205
69
+ Modeling_Tool/WOE/WOE_Tool.pyi,sha256=syQ_T90SQvZAWnI9LbptqwXvyXsByxVBSaapNqsfc98,3276
70
+ Modeling_Tool/WOE/__init__.py,sha256=3lySV5P6DxKCiQ1xTpKrER0ca2lOM0z-Ub2B4UIBHfQ,2083
71
+ Modeling_Tool/WOE/plot_woe_tool.py,sha256=j6Cu8a1evurweou4nP4daqSDZg6B0RTSIBZu4bKfYvk,9859
72
+ Modeling_Tool/WOE/plot_woe_tool.pyi,sha256=uGWK3LiV1oV6B5vpv9cxgOkXX_s7inBjxmXOjbf3aFg,1277
73
+ Report/Report_Tool.py,sha256=x09OolMgEChU_jFjpnm6fFb5i2pmfmdgp2TY4O096uU,17510
74
+ Report/__init__.py,sha256=QWuEBv0Ca_vZwRW_UcE6yWyPmgzEN0k0G5oG-9VNaUc,87
75
+ supermodelingfactory-0.2.0.dist-info/licenses/LICENSE,sha256=ru9QxVlfuL2U1iilxseD6ojN8pNf-GsvEixIZZrZRjA,4945
76
+ supermodelingfactory-0.2.0.dist-info/METADATA,sha256=-dd5ZM4Oe5hwu2Xt29Ui9Q0ssXYd51XDj-l3AwJM_VE,10282
77
+ supermodelingfactory-0.2.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
78
+ supermodelingfactory-0.2.0.dist-info/top_level.txt,sha256=ziUpzZMlhLcJmE9XAYNDuaaVtKI0hq5Nm1nJ4lExqiU,33
79
+ supermodelingfactory-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,102 @@
1
+ Business Source License 1.1
2
+
3
+ Parameters
4
+ ----------
5
+ Licensor: Kyle Sun (github.com/Kyle-J-Sun)
6
+ Licensed Work: SuperModelingFactory (the "Software")
7
+ The Licensed Work is (c) 2026 Kyle Sun.
8
+ Additional Use Grant: You may use, copy, modify, redistribute, and create
9
+ derivative works of the Licensed Work for any purpose
10
+ that is NOT a Production Use, including:
11
+ - personal study and academic research;
12
+ - internal evaluation, prototyping, and testing;
13
+ - non-commercial benchmarking, teaching, and publication.
14
+
15
+ "Production Use" means any use of the Licensed Work, or
16
+ of any derivative work, in connection with offering a
17
+ commercial product or service, or in connection with the
18
+ ongoing operation of a business — including, without
19
+ limitation, deploying the Licensed Work (or any portion
20
+ thereof) inside a credit-risk, lending, scoring,
21
+ underwriting, marketing, or other revenue-generating
22
+ pipeline of any organization other than the Licensor.
23
+
24
+ Production Use requires a separate commercial license
25
+ from the Licensor. Contact the Licensor at the email
26
+ address listed in pyproject.toml to obtain one.
27
+
28
+ Change Date: 2030-06-24
29
+ Change License: Apache License, Version 2.0
30
+
31
+ For information about alternative licensing arrangements for the Software,
32
+ please contact the Licensor.
33
+
34
+ Notice
35
+ ------
36
+ Business Source License 1.1
37
+
38
+ Terms
39
+
40
+ The Licensor hereby grants you the right to copy, modify, create derivative
41
+ works, redistribute, and make non-production use of the Licensed Work. The
42
+ Licensor may make an Additional Use Grant, above, permitting limited
43
+ production use.
44
+
45
+ Effective on the Change Date, or the fourth anniversary of the first
46
+ publicly available distribution of a specific version of the Licensed Work
47
+ under this License, whichever comes first, the Licensor hereby grants you
48
+ rights under the terms of the Change License, and the rights granted in the
49
+ paragraph above terminate.
50
+
51
+ If your use of the Licensed Work does not comply with the requirements
52
+ currently in effect as described in this License, you must purchase a
53
+ commercial license from the Licensor, its affiliated entities, or authorized
54
+ resellers, or you must refrain from using the Licensed Work.
55
+
56
+ All copies of the original and modified Licensed Work, and derivative works
57
+ of the Licensed Work, are subject to this License. This License applies
58
+ separately for each version of the Licensed Work and the Change Date may
59
+ vary for each version of the Licensed Work released by Licensor.
60
+
61
+ You must conspicuously display this License on each original or modified
62
+ copy of the Licensed Work. If you receive the Licensed Work in original or
63
+ modified form from a third party, the terms and conditions set forth in
64
+ this License apply to your use of that work.
65
+
66
+ Any use of the Licensed Work in violation of this License will automatically
67
+ terminate your rights under this License for the current and all other
68
+ versions of the Licensed Work.
69
+
70
+ This License does not grant you any right in any trademark or logo of
71
+ Licensor or its affiliates (provided that you may use a trademark or logo of
72
+ Licensor as expressly required by this License).
73
+
74
+ TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
75
+ AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
76
+ EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
77
+ MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.
78
+
79
+ MariaDB hereby grants you permission to use this License's text to license
80
+ your works, and to refer to it using the trademark "Business Source
81
+ License", as long as you comply with the Covenants of Licensor below.
82
+
83
+ Covenants of Licensor
84
+
85
+ In consideration of the right to use this License's text and the "Business
86
+ Source License" name and trademark, Licensor covenants to MariaDB, and to
87
+ all other recipients of the Licensed Work to be provided by Licensor:
88
+
89
+ 1. To specify as the Change License the GPL Version 2.0 or any later
90
+ version, or a license that is compatible with GPL Version 2.0 or a later
91
+ version, where "compatible" means that software provided under the
92
+ Change License can be included in a program with software provided under
93
+ GPL Version 2.0 or a later version. Licensor may specify additional
94
+ Change Licenses without limitation.
95
+
96
+ 2. To either: (a) specify an additional grant of rights to use that does not
97
+ impose any additional restriction on the right granted in this License,
98
+ as the Additional Use Grant; or (b) insert the text "None".
99
+
100
+ 3. To specify a Change Date.
101
+
102
+ 4. Not to modify this License in any other way.
@@ -0,0 +1,3 @@
1
+ ExcelMaster
2
+ Modeling_Tool
3
+ Report