code-constraints 0.1.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 (116) hide show
  1. code_constraints/__init__.py +1 -0
  2. code_constraints/cli/__init__.py +0 -0
  3. code_constraints/cli/__main__.py +1555 -0
  4. code_constraints/cli/_assets/agents/cdec-architect.md +468 -0
  5. code_constraints/cli/_assets/agents/oop-refactor-architect.md +317 -0
  6. code_constraints/cli/_assets/shims/csharp/CodeConstraintsRules.cs +94 -0
  7. code_constraints/cli/_assets/shims/julia/CdecRules.jl +129 -0
  8. code_constraints/cli/_assets/shims/lua/cdec_rules.lua +92 -0
  9. code_constraints/cli/_assets/shims/odin/cdec_rules.odin +67 -0
  10. code_constraints/cli/_assets/shims/python/cdec_rules.py +94 -0
  11. code_constraints/cli/_assets/skills/cdec-architecture-loop/SKILL.md +152 -0
  12. code_constraints/cli/depstamp.py +118 -0
  13. code_constraints/cli/detect.py +77 -0
  14. code_constraints/cli/interactive.py +304 -0
  15. code_constraints/cli/scaffold.py +602 -0
  16. code_constraints/cli/update.py +157 -0
  17. code_constraints/core/__init__.py +41 -0
  18. code_constraints/core/annotations.py +217 -0
  19. code_constraints/core/associations.py +134 -0
  20. code_constraints/core/diff.py +302 -0
  21. code_constraints/core/editor_io.py +280 -0
  22. code_constraints/core/graph_model.py +681 -0
  23. code_constraints/core/keys.py +105 -0
  24. code_constraints/core/model.py +294 -0
  25. code_constraints/core/model_io.py +65 -0
  26. code_constraints/core/receivers.py +34 -0
  27. code_constraints/core/rules.py +177 -0
  28. code_constraints/core/rulesdoc.py +208 -0
  29. code_constraints/core/tags.py +114 -0
  30. code_constraints/core/ts_fingerprint.py +88 -0
  31. code_constraints/core/xmi_reader.py +358 -0
  32. code_constraints/core/xmi_writer.py +373 -0
  33. code_constraints/csharp/__init__.py +3 -0
  34. code_constraints/csharp/activity.py +250 -0
  35. code_constraints/csharp/conformance.py +331 -0
  36. code_constraints/csharp/fingerprint.py +274 -0
  37. code_constraints/csharp/parser.py +436 -0
  38. code_constraints/csharp/rules_extract.py +78 -0
  39. code_constraints/csharp/sequence.py +295 -0
  40. code_constraints/enforce/__init__.py +15 -0
  41. code_constraints/enforce/engine.py +122 -0
  42. code_constraints/enforce/model.py +74 -0
  43. code_constraints/julia/__init__.py +5 -0
  44. code_constraints/julia/conformance.py +282 -0
  45. code_constraints/julia/fingerprint.py +226 -0
  46. code_constraints/julia/parser.py +523 -0
  47. code_constraints/julia/rules_extract.py +216 -0
  48. code_constraints/lint/__init__.py +10 -0
  49. code_constraints/lint/baseline.py +96 -0
  50. code_constraints/lint/config.py +239 -0
  51. code_constraints/lint/engine.py +179 -0
  52. code_constraints/lint/pipeline.py +108 -0
  53. code_constraints/lint/report.py +151 -0
  54. code_constraints/lint/rules/__init__.py +50 -0
  55. code_constraints/lint/rules/base.py +200 -0
  56. code_constraints/lint/rules/cyclic_package_dependencies.py +69 -0
  57. code_constraints/lint/rules/dangling_classes.py +98 -0
  58. code_constraints/lint/rules/forbidden_package_references.py +47 -0
  59. code_constraints/lint/rules/forbidden_references.py +48 -0
  60. code_constraints/lint/rules/frozen_members.py +67 -0
  61. code_constraints/lint/rules/frozen_rules.py +105 -0
  62. code_constraints/lint/rules/implementation_locks.py +156 -0
  63. code_constraints/lint/rules/layer_dependencies.py +92 -0
  64. code_constraints/lint/rules/max_class_fanout.py +41 -0
  65. code_constraints/lint/rules/no_new_classes.py +27 -0
  66. code_constraints/lint/rules/no_removed_classes.py +27 -0
  67. code_constraints/lint/rules/reference_architecture.py +111 -0
  68. code_constraints/lint/rules/subclass_naming.py +71 -0
  69. code_constraints/lint/rules/tag_conformance.py +76 -0
  70. code_constraints/lock/__init__.py +73 -0
  71. code_constraints/lock/engine.py +395 -0
  72. code_constraints/lock/model.py +235 -0
  73. code_constraints/lock/store.py +144 -0
  74. code_constraints/lua/__init__.py +5 -0
  75. code_constraints/lua/conformance.py +239 -0
  76. code_constraints/lua/fingerprint.py +252 -0
  77. code_constraints/lua/parser.py +500 -0
  78. code_constraints/lua/rules_extract.py +55 -0
  79. code_constraints/mcp/__init__.py +20 -0
  80. code_constraints/mcp/__main__.py +73 -0
  81. code_constraints/mcp/server.py +1203 -0
  82. code_constraints/odin/__init__.py +5 -0
  83. code_constraints/odin/conformance.py +244 -0
  84. code_constraints/odin/fingerprint.py +159 -0
  85. code_constraints/odin/parser.py +471 -0
  86. code_constraints/odin/rules_extract.py +38 -0
  87. code_constraints/python/__init__.py +3 -0
  88. code_constraints/python/activity.py +278 -0
  89. code_constraints/python/conformance.py +249 -0
  90. code_constraints/python/fingerprint.py +231 -0
  91. code_constraints/python/parser.py +330 -0
  92. code_constraints/python/rules_extract.py +83 -0
  93. code_constraints/python/sequence.py +257 -0
  94. code_constraints/reference/__init__.py +15 -0
  95. code_constraints/reference/compare.py +356 -0
  96. code_constraints/reference/report.py +38 -0
  97. code_constraints/svelte/__init__.py +3 -0
  98. code_constraints/svelte/parser.py +523 -0
  99. code_constraints/typescript/__init__.py +3 -0
  100. code_constraints/typescript/parser.py +590 -0
  101. code_constraints/waivers/__init__.py +89 -0
  102. code_constraints/waivers/collect.py +167 -0
  103. code_constraints/waivers/model.py +90 -0
  104. code_constraints/waivers/ops.py +150 -0
  105. code_constraints/waivers/review.py +156 -0
  106. code_constraints/waivers/store.py +300 -0
  107. code_constraints/web/__init__.py +0 -0
  108. code_constraints/web/_static/assets/index-3ivBsYY4.css +1 -0
  109. code_constraints/web/_static/assets/index-BTzTqGFp.js +9 -0
  110. code_constraints/web/_static/index.html +13 -0
  111. code_constraints/web/app.py +1076 -0
  112. code_constraints-0.1.0.dist-info/METADATA +663 -0
  113. code_constraints-0.1.0.dist-info/RECORD +116 -0
  114. code_constraints-0.1.0.dist-info/WHEEL +4 -0
  115. code_constraints-0.1.0.dist-info/entry_points.txt +3 -0
  116. code_constraints-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,116 @@
1
+ code_constraints/__init__.py,sha256=0nfBgPPL7pvFymxeTERhpQZQh36iIVtwgQuTZZ90AVQ,98
2
+ code_constraints/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ code_constraints/cli/__main__.py,sha256=YmLoSchJkKackdTxh505M9j6b4Gi3J6--SspeO3eKuU,61151
4
+ code_constraints/cli/depstamp.py,sha256=If6NZuNYZtuizLF9pXoVgXpDuT1s7dkmGhYDUaUt0UA,4438
5
+ code_constraints/cli/detect.py,sha256=NhlKD5TCyHdT9aQ88ynrjNQFki-HtHhUWElZFncmWiU,2323
6
+ code_constraints/cli/interactive.py,sha256=pl5cFcS6WT6_bbW3YcsNDME8sHtVSHw1sU3adSnCwVM,10590
7
+ code_constraints/cli/scaffold.py,sha256=iF2tNDrp1_UVTvqzPARxu3-2UQPFYTHT6oaIbAaKJoo,23629
8
+ code_constraints/cli/update.py,sha256=pOoJd-6UHnhtRHNNlG0NwHeol0yexfhlU5m_Rwzz69M,6703
9
+ code_constraints/cli/_assets/agents/cdec-architect.md,sha256=OkTKR_iReLOZssj2PZ186lZreClx7EJFZ0CUytMhdiQ,40650
10
+ code_constraints/cli/_assets/agents/oop-refactor-architect.md,sha256=oeLF6eu1lG45yJ1IdkY0yhOlbDBLuQLtU7FmCFEL22A,30009
11
+ code_constraints/cli/_assets/skills/cdec-architecture-loop/SKILL.md,sha256=AzmW9uh4rYIO8L7d25SI2iEcIEhlo6zo0eLJUmD-sD8,8089
12
+ code_constraints/core/__init__.py,sha256=IeXCrwFyCoZLCXhmGA7ebM6FMdv5ArgVK49UKdZEToo,631
13
+ code_constraints/core/annotations.py,sha256=IT6NEBFnJlTKUY86UPUg_pz4OOjrDNdKddSUeaHOQ80,7662
14
+ code_constraints/core/associations.py,sha256=KHY45g6YBeLjrX7mQKOMd5LGw9upyN8m2LlZyjX7J1w,4802
15
+ code_constraints/core/diff.py,sha256=9jJdBjHMDaSODxOm_GPl5LHiohyXWWMvZcmF9uloqdw,10486
16
+ code_constraints/core/editor_io.py,sha256=pGhpkuuuNxtqqSMrc5-KWB-FGTpWqZw2u4nC90y2-5I,9200
17
+ code_constraints/core/graph_model.py,sha256=e4_RCbXAk9ueLRfRaY7QHeOy189TBduIi7IRPWEbQrY,25789
18
+ code_constraints/core/keys.py,sha256=pfK1guGABoRp8VHQUlQWIXIyTgAyqkxtYinvtKwUxvY,4379
19
+ code_constraints/core/model.py,sha256=lR5PZnf4wDxzsoquUHPVySkq4El2f6w6QW1mcyk66Go,8961
20
+ code_constraints/core/model_io.py,sha256=X3Qr4Jx3wWpIndGOsR2w2c3ckQRWjEXL85FeWsgZwKo,2261
21
+ code_constraints/core/receivers.py,sha256=imy29kUykyQk6nFQlvBDTBEhC6726NXUgcR-sywNc2o,1358
22
+ code_constraints/core/rules.py,sha256=hfkqohd2Pb0oO1L3x2B3uARlt44yJny2HBRjUOIZx6g,7055
23
+ code_constraints/core/rulesdoc.py,sha256=aBtFFLPmcnFTk-d71ztujuZDq7qRyclK6Q2Nei7HQjI,7060
24
+ code_constraints/core/tags.py,sha256=b7W1HOsfJDWV5BDshbo8F-M2ExWHFuvQ_ly2FkSKkmM,3847
25
+ code_constraints/core/ts_fingerprint.py,sha256=m-8hlvVEvRtSxbd6ceuRYxBMnVv1BHDV10wSB1B8qH0,3739
26
+ code_constraints/core/xmi_reader.py,sha256=dRq2VCX3DQAtone4CJz4v-Q6tMoyeNAV6XOhzVowxgY,11522
27
+ code_constraints/core/xmi_writer.py,sha256=02UAjMTdEetadGXJ271I0t7gf_O0nh54ZQ08C78Sm6Y,12440
28
+ code_constraints/csharp/__init__.py,sha256=knY0j8fpB7K9E3vDllDuk-m-pwljzUcSa62oO3dNWM0,86
29
+ code_constraints/csharp/activity.py,sha256=rU1cKeAbTsZVXB00qmau1ufj0fzoK4btEZl9sUsKdu8,8622
30
+ code_constraints/csharp/conformance.py,sha256=wLio_pGvFVpEPACter9XCVVgIQOMAuEkoSpk23ZnOmo,11916
31
+ code_constraints/csharp/fingerprint.py,sha256=CVNhm6RFanLyMz3J108SFRQVCf5LBNEsZDa8VoQLnZE,8853
32
+ code_constraints/csharp/parser.py,sha256=s3Hv1Tio9QUlE2iRZ7G_RTNkL8VE8lSRmF3kWnvdYmQ,15053
33
+ code_constraints/csharp/rules_extract.py,sha256=zrrgN-uOjmRXecKhxVb2PovRhyI9FvSi0Y7p_1ZOBMQ,3016
34
+ code_constraints/csharp/sequence.py,sha256=rqHjgagzxE6S-mSJWcFTVl3uCx8jb-CGKZkSR1cSX4w,10091
35
+ code_constraints/enforce/__init__.py,sha256=fbB8yZLoCMLbLo9atT5TCzIAeyXfP3Cnwh_qzhEfELc,640
36
+ code_constraints/enforce/engine.py,sha256=RxN2hr54wXY5NIa2VfuSakPzfJcSxoBSzLXiqwiLRRQ,4125
37
+ code_constraints/enforce/model.py,sha256=cDWczRGtMNeCoany5DHmp5cMvl57kARiQl2aMhHwOi8,2838
38
+ code_constraints/julia/__init__.py,sha256=tv1pe17Zq0_x3PhvfuimafSKn4fTgeVlm8h7iC_Zl-E,170
39
+ code_constraints/julia/conformance.py,sha256=Fe-CBa03FfEI3XIYOC3P8vmiSbXuwM_J6xLoMDGHrC4,10785
40
+ code_constraints/julia/fingerprint.py,sha256=alqJvWKqx7AKAWF4iaT_1rgO7rTKUyxS6COPvaAuOWE,8215
41
+ code_constraints/julia/parser.py,sha256=c12h1YQMISW6vuDYKG78ro7TuYMjLzSg43JLrB_wpO8,18146
42
+ code_constraints/julia/rules_extract.py,sha256=0-P7euf2wTFXdP92RqRTSAUc4tRGnnEDS9NCVzT7JjY,8449
43
+ code_constraints/lint/__init__.py,sha256=mp-SKUp-Yw7sCygvj8G9WQ-7t2ibPK-LTO2s6W3bJek,461
44
+ code_constraints/lint/baseline.py,sha256=4EqOOHDgVawTsmjoiG6tCVxY6H61LQfMjuI5RrSpuis,3242
45
+ code_constraints/lint/config.py,sha256=GmDOZPPl_n1puoGTYIxvd6kexRGx4VXSl31dY4FsFTA,8397
46
+ code_constraints/lint/engine.py,sha256=2JFdkipoKfLVPgVjQINEHqB3BKGEHwz17C0wipQuv3c,6729
47
+ code_constraints/lint/pipeline.py,sha256=LF-cFapGNyXZPWiSafeVsr_EUXULpGxeia4EB9jPfLE,3883
48
+ code_constraints/lint/report.py,sha256=kdV-P31rzoug0uCvppDxklVDs5YHj5a05AbO0pjLN2M,6407
49
+ code_constraints/lint/rules/__init__.py,sha256=ReSltQguNhxCV4AonHj5raz4nU-qL6YJIiwqe07_i3M,1375
50
+ code_constraints/lint/rules/base.py,sha256=nQ0oKTeR7W7b_dY4HRl-Fm17bnd9PyZ6fWBT2pHbGXs,7918
51
+ code_constraints/lint/rules/cyclic_package_dependencies.py,sha256=k2ULPBWYGV_jGYJ8hDwJ8KtnfoR1cxlfE_zI0KklE-c,2500
52
+ code_constraints/lint/rules/dangling_classes.py,sha256=q_FnZlzW-hHDzak3S8qkd6w-s5mqg5J7oxToAeKamNI,3821
53
+ code_constraints/lint/rules/forbidden_package_references.py,sha256=QXSC9jzRePv86ZByA_BgumIao_6fZOt8qjqKk1vZHws,1823
54
+ code_constraints/lint/rules/forbidden_references.py,sha256=ca1ERlLJ9IW8u4EepHZGY0QBmtZYuRnp_HvZLbYZLcQ,1912
55
+ code_constraints/lint/rules/frozen_members.py,sha256=TgH1KX1LY1xB2BZLAdg7miGRwWBCmH1AhCaU8Enbels,2836
56
+ code_constraints/lint/rules/frozen_rules.py,sha256=BYpPmG_-pKH4WWRHss_LjE7-HxY9007LsbwTTKxPSnc,3949
57
+ code_constraints/lint/rules/implementation_locks.py,sha256=-dGbe7_TIVF-vS1p3pFoYjUC3KFGj6hDUvBnM6VpKJo,6770
58
+ code_constraints/lint/rules/layer_dependencies.py,sha256=30Fc9oTufOtSYEvWxO-Yb3ZkasESTSE9vC1DSrULE0s,3481
59
+ code_constraints/lint/rules/max_class_fanout.py,sha256=-dMMQl2Lxe5egjKR6P3BxWMUmboFmd7FN0P6N7AUVDc,1607
60
+ code_constraints/lint/rules/no_new_classes.py,sha256=FHFx2af6CrQKgxb922ZFTCo2Q_VhFvCP8fznL0GO0Mg,914
61
+ code_constraints/lint/rules/no_removed_classes.py,sha256=lhaHrTspS9sCBlnGQ-rHT9W6C4gBgyfIZXckivpZSZc,920
62
+ code_constraints/lint/rules/reference_architecture.py,sha256=tInGVmWFhkns5SlmZVkWozlXfyd7EdsIccD_YVlv8S8,4961
63
+ code_constraints/lint/rules/subclass_naming.py,sha256=rbV95X9Mjn1NucANcft1tbEYdDCsXviKG-_2CoBKYXg,2814
64
+ code_constraints/lint/rules/tag_conformance.py,sha256=hr9UK9NAkqawjhFxazS8RuXwXx3GeM5D1-tPOPz6E_Y,3215
65
+ code_constraints/lock/__init__.py,sha256=Ys0PgZKqwXq87YZi1hkHODxOGuz9cRBacNduQch6yX4,1735
66
+ code_constraints/lock/engine.py,sha256=oFOY9R8TKlP6XyV9caVSCbEpVEkfzFjgaepxBUAQGTI,14597
67
+ code_constraints/lock/model.py,sha256=jFoEtgznOMAY1cDvdcGuetcexWgQIpUBxnACjyldRNw,8238
68
+ code_constraints/lock/store.py,sha256=7Gn3MeZ0v3tdaB2ZmzQoWGhA0xOSS1jnYeK1WUs3O1A,5275
69
+ code_constraints/lua/__init__.py,sha256=7Ji5g2YZO6xft5cAvv9OAGpTUVWHScogFfxgV2tz47Y,166
70
+ code_constraints/lua/conformance.py,sha256=9a8uYQIrRvLh-5CsVAKyytR5ELoMRlABjoenay2VStg,8846
71
+ code_constraints/lua/fingerprint.py,sha256=lDYA7S4_yOYKADuysnanFxNigQdlmlVhCHO7AT4HFek,8982
72
+ code_constraints/lua/parser.py,sha256=x2MCsIO7ZLlBJ4t10_5tRVtSAmXwbBBVQRuCuLYl0WY,17619
73
+ code_constraints/lua/rules_extract.py,sha256=QbYHcXigki1phEmIH-ROyhBH0nirXxfEfsj8jI5tdOE,2232
74
+ code_constraints/mcp/__init__.py,sha256=k2vfgjRRzvldxZZNdGKb8mj8rW7R5aaPs5YdcTxME7Q,868
75
+ code_constraints/mcp/__main__.py,sha256=rnCim9fluI39-TgPL0ull8FsY00kRuH_5rJVXRZFjeU,2174
76
+ code_constraints/mcp/server.py,sha256=yvfHsWVA0ASCOFwiVuOKlHkG7HO_rJkqElgacECd0_I,46445
77
+ code_constraints/odin/__init__.py,sha256=1eMr1llcw4yYFDS5wRo1B_4i-NayCjy9ft7NxrjCAdU,168
78
+ code_constraints/odin/conformance.py,sha256=RTF59J4ae3t90_eed91dF2ZetPVlh_bdNITRw8s7TSo,9544
79
+ code_constraints/odin/fingerprint.py,sha256=6b9rqV4s5GM_iSWVNWG7SiXHJaNf0Gxpq97YEdlF5yQ,5780
80
+ code_constraints/odin/parser.py,sha256=Qi5ce0sd5tjSBrP02ZB4mhIaYsnP-Q5KtAUFmpyu8cA,16658
81
+ code_constraints/odin/rules_extract.py,sha256=vq1zcN7V-yOSOUIo_Ydvqj1CScnd5BffTNXRvdsI3ZU,1467
82
+ code_constraints/python/__init__.py,sha256=v73moUBDB_wShK9Nugbx4Ef5AiZ4xqbWzrVRUP8cndA,86
83
+ code_constraints/python/activity.py,sha256=m8PlewM_ze4piNuQjxlWDmIzXki7byhsSGFXruovoNI,9936
84
+ code_constraints/python/conformance.py,sha256=9ooO52qzpk7B6d-cOjxWwEYUNPMJ_Dx0zP3C0taD24w,8659
85
+ code_constraints/python/fingerprint.py,sha256=0uuO0WhkgT5kqHleUeLtYGT_xH864HyDdhu_jjf4Ws4,8491
86
+ code_constraints/python/parser.py,sha256=GqcZvDEFAp49jvlpwIHzuYOo1DvJIJsqgmPALHrGhk4,11267
87
+ code_constraints/python/rules_extract.py,sha256=9s8WyVs4gTOyk0FF6_m2JBbOkZ8HJt1hDcYd30mwBkQ,3107
88
+ code_constraints/python/sequence.py,sha256=8hq7IZyusb73Qkt9-uRJagpp3fqy2BAwVAzwzF0e54s,8817
89
+ code_constraints/reference/__init__.py,sha256=OOo02JuccCQDdQLvPkOFseQGieB006ymW9cPCuBWHnk,651
90
+ code_constraints/reference/compare.py,sha256=8_BuQq2a4CJHyM15LcOrF6HbTV3fi_q0ZZ0fCS-1B90,12044
91
+ code_constraints/reference/report.py,sha256=xm4giX8asle5fawdNH453SeKedtZfbDsPt_i5BJ1gFQ,1287
92
+ code_constraints/svelte/__init__.py,sha256=10t43FDdx9sfYnuVfEkVpiFwF4QYeGP7VCHk8OSH7xs,86
93
+ code_constraints/svelte/parser.py,sha256=DeIx7sDqTrxshP1rYs_S4vvvl9uxB3ckoUyeea9G2Io,18940
94
+ code_constraints/typescript/__init__.py,sha256=FWAEzIqKCelUmAkQHDGtL6VKojAmU4TFA-KDNUFbXds,90
95
+ code_constraints/typescript/parser.py,sha256=nxSX49zBeQtEi1lG0lxTyzXuiPDQvV4-gel-DhPbUGQ,20047
96
+ code_constraints/waivers/__init__.py,sha256=1JsYhJMKLFk-89Z7XxgRYjoO-xiuC3mmIx55USWNAjc,2276
97
+ code_constraints/waivers/collect.py,sha256=IYGnrs_lq5Ti8c15_HyGmPZBGZx_SgG36Tpv-QhFFfE,6303
98
+ code_constraints/waivers/model.py,sha256=p0HIorLuzXYyyWMatlIqs890F-iCVhodmj0WoUaRoR4,3522
99
+ code_constraints/waivers/ops.py,sha256=U2bJPye2y90I7TbFHg9EUwxwZ6na1WzMeXS0A9V_bx8,5013
100
+ code_constraints/waivers/review.py,sha256=4NBE7YIQZmRa0Ogz_w5SqIPcWjaT3fnWlZILJePkv-A,6017
101
+ code_constraints/waivers/store.py,sha256=dNxFrY6ZAsWavPS-06P91nFnE8AvcfaDW3tF1h6iGtg,11028
102
+ code_constraints/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
+ code_constraints/web/app.py,sha256=IGgUXceBAi4Mv9ms6hsChzrVjZ_0bkEU1l8R9ZO86gM,40243
104
+ code_constraints/web/_static/index.html,sha256=KAopBOB-MW3kNWeYM2YVoFFYyRh-GMI2me_MgFm6i4k,400
105
+ code_constraints/web/_static/assets/index-3ivBsYY4.css,sha256=gaKUOHAhLCGuGqLP63nRlzbGALDKUwgUXF3JcXswoiI,78304
106
+ code_constraints/web/_static/assets/index-BTzTqGFp.js,sha256=i-k7JgvOAysC210VI79CaOLGVVDQCAdfnh4aepPrQ3c,408543
107
+ code_constraints/cli/_assets/shims/csharp/CodeConstraintsRules.cs,sha256=Tg9H1IxGwnb-eGkLMtRv7LQBGcOTqcOxnXcFzwvlU8c,3641
108
+ code_constraints/cli/_assets/shims/julia/CdecRules.jl,sha256=6KFktP9nowx4A4yM-ave0Qt-d4zYDcTQbdDO6oXwGFM,3990
109
+ code_constraints/cli/_assets/shims/lua/cdec_rules.lua,sha256=b5qz3G9GNS8IYOqwpiXlE14i4B-FgRj5dhnTaAr79iA,3489
110
+ code_constraints/cli/_assets/shims/odin/cdec_rules.odin,sha256=ph3FaY4QJGxSCjby5-Vt-xs8L0xnh839uy4_MgQwnNQ,3002
111
+ code_constraints/cli/_assets/shims/python/cdec_rules.py,sha256=LOu9nGJkiaSrFO-qk6OG0_vNPyNQCYlBeZnhiLa8qKc,3179
112
+ code_constraints-0.1.0.dist-info/METADATA,sha256=N2jUkkEY_yUbAWzg1kzuQUborLkx3P_vqjGs4ANQHnA,34475
113
+ code_constraints-0.1.0.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
114
+ code_constraints-0.1.0.dist-info/entry_points.txt,sha256=_k4tUA_allRjQMnylQwRN0DTi4h-rOnm5A0tl7LgfD0,105
115
+ code_constraints-0.1.0.dist-info/licenses/LICENSE,sha256=TbQvSTmnWaYFZEuNVmghzAM-6-PULYFSie320TYCa34,1066
116
+ code_constraints-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ cdec = code_constraints.cli.__main__:app
3
+ cdec-mcp = code_constraints.mcp.__main__:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 fleskovar
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.