serenecode 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 (39) hide show
  1. serenecode/__init__.py +281 -0
  2. serenecode/adapters/__init__.py +6 -0
  3. serenecode/adapters/coverage_adapter.py +1173 -0
  4. serenecode/adapters/crosshair_adapter.py +1069 -0
  5. serenecode/adapters/hypothesis_adapter.py +1824 -0
  6. serenecode/adapters/local_fs.py +169 -0
  7. serenecode/adapters/module_loader.py +492 -0
  8. serenecode/adapters/mypy_adapter.py +161 -0
  9. serenecode/checker/__init__.py +6 -0
  10. serenecode/checker/compositional.py +2216 -0
  11. serenecode/checker/coverage.py +186 -0
  12. serenecode/checker/properties.py +154 -0
  13. serenecode/checker/structural.py +1504 -0
  14. serenecode/checker/symbolic.py +178 -0
  15. serenecode/checker/types.py +148 -0
  16. serenecode/cli.py +478 -0
  17. serenecode/config.py +711 -0
  18. serenecode/contracts/__init__.py +6 -0
  19. serenecode/contracts/predicates.py +176 -0
  20. serenecode/core/__init__.py +6 -0
  21. serenecode/core/exceptions.py +38 -0
  22. serenecode/core/pipeline.py +807 -0
  23. serenecode/init.py +307 -0
  24. serenecode/models.py +308 -0
  25. serenecode/ports/__init__.py +6 -0
  26. serenecode/ports/coverage_analyzer.py +124 -0
  27. serenecode/ports/file_system.py +95 -0
  28. serenecode/ports/property_tester.py +69 -0
  29. serenecode/ports/symbolic_checker.py +70 -0
  30. serenecode/ports/type_checker.py +66 -0
  31. serenecode/reporter.py +346 -0
  32. serenecode/source_discovery.py +319 -0
  33. serenecode/templates/__init__.py +5 -0
  34. serenecode/templates/content.py +337 -0
  35. serenecode-0.1.0.dist-info/METADATA +298 -0
  36. serenecode-0.1.0.dist-info/RECORD +39 -0
  37. serenecode-0.1.0.dist-info/WHEEL +4 -0
  38. serenecode-0.1.0.dist-info/entry_points.txt +2 -0
  39. serenecode-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,39 @@
1
+ serenecode/__init__.py,sha256=mlyswhbw8DRNyb0Vd2MbjqOwf2nC_q2oAX2es55z2Z0,10482
2
+ serenecode/cli.py,sha256=9ViylgTl2gllQgod3AeQTk0yjH-JU3DnlBhrfgPD520,16660
3
+ serenecode/config.py,sha256=N-13Jkoz3AwktRQoGJl25-514OXWFiKlqUnPErUXg8U,23008
4
+ serenecode/init.py,sha256=IhvqQBt3h5E7IalLhij8VeHHk0ozFL3uYgtgROqVEFY,9883
5
+ serenecode/models.py,sha256=W0k8LHQyxuyI88R4JuFBiTzwPPW_UykuD1LlXo7BMCM,8737
6
+ serenecode/reporter.py,sha256=2nW8frXiZ9w1tfwgqVeS9WKy2XDb4Un2DwlVbOQdw8o,14259
7
+ serenecode/source_discovery.py,sha256=xdFl6Q32-f40buOgvuSqSFSxGmeTKt4BCJD2aoHbQ-M,11674
8
+ serenecode/adapters/__init__.py,sha256=DJDS3VpLdGYK3wiL69qDQ0-D89gVdp2ASjUx9ltTg_8,236
9
+ serenecode/adapters/coverage_adapter.py,sha256=GZL0DX-rz7XxEmu416nW_QhDQyD2F6ANzoSgnZ8gkGI,40923
10
+ serenecode/adapters/crosshair_adapter.py,sha256=JI5teMFGYqOgBxFak4zK7GSleBFTtQp5lhxHtMbSDL8,38919
11
+ serenecode/adapters/hypothesis_adapter.py,sha256=lR9Jmn9ZsCjRisGQwFoUNQbh4RenuYZLC07tuWFXvoU,66480
12
+ serenecode/adapters/local_fs.py,sha256=rx4zTqDNTrMS2dNaHbGNSufZxJ-stm-pl5pJUF7p-xI,5701
13
+ serenecode/adapters/module_loader.py,sha256=8FrMOJqiFsoJ35Pn2d5ZOI_dG_Bq8VmKD7IOPkOCJZE,20123
14
+ serenecode/adapters/mypy_adapter.py,sha256=73E4qZ3YdGnJDpqsG2cynTetncwbkhjCSCjt8ZVUAMw,5213
15
+ serenecode/checker/__init__.py,sha256=G4KkeIoyR9qXGk0n7XpQwm-eIXKgze7WXrUv2eOfr2Y,239
16
+ serenecode/checker/compositional.py,sha256=RszmKRZjobiRU-Pk2JRDkl2hgKUPSNNucL8qegxg2GE,78800
17
+ serenecode/checker/coverage.py,sha256=QtjzUrAYe3JTZkRHjUmjiQbtCoO7TF7N_Sl-EPAwImI,6104
18
+ serenecode/checker/properties.py,sha256=cJBV6Qqz4BnEzqnRLH_ZJVVC5wEKx8iebuWeAsYzfhQ,5449
19
+ serenecode/checker/structural.py,sha256=J_4y0-jUDIgLOEYesEiDYZ6s2_7RX8fZGusqLlLLhro,52178
20
+ serenecode/checker/symbolic.py,sha256=Snc5rve-Zklxs0q9qysWAyo7yGHCGyE3lFfWkJdk1CY,6503
21
+ serenecode/checker/types.py,sha256=eiPqUeWhEVJQhY56yrDZ2_86Qqfw2xaj6ASAoPKd-Bk,6132
22
+ serenecode/contracts/__init__.py,sha256=VQ9CvViEvp7FZO_Hc5AncpTJbQH1JhKu8coxM-nqTuQ,216
23
+ serenecode/contracts/predicates.py,sha256=vbAnwomlSVDxdXYVuv_3L91s9rpZqNanOt6hXB0hCzE,5612
24
+ serenecode/core/__init__.py,sha256=W66G2vnDnKL43VCEMAZXXBdSHPL5Ap3c73CyW9ImriE,243
25
+ serenecode/core/exceptions.py,sha256=2fJmE_PhHPCoOrLrFl1_Vtupzpk2Xj65RBYJqEPy0Q4,1120
26
+ serenecode/core/pipeline.py,sha256=84NsGKSmXokECpBCmWVWFnXa4qukZ8ZoeEvr59U-6uI,28081
27
+ serenecode/ports/__init__.py,sha256=6R3wUu5iRkPgr2W_u_7GglHXZ1z0VrYQt8qrXuyIzrI,238
28
+ serenecode/ports/coverage_analyzer.py,sha256=FXkk9De4fTsCpHgqi4gfUHfBVHkyjqGX9xQRKYwsA3Y,3579
29
+ serenecode/ports/file_system.py,sha256=irV6vduuDekE6oWMUzYOqoXMZf5WxvprHONh7sm-4hE,3175
30
+ serenecode/ports/property_tester.py,sha256=HCJw5kyjKeu3HDS4UUn3svCWJ4Mh6ncHpTWeKPYnrIY,2245
31
+ serenecode/ports/symbolic_checker.py,sha256=GneMQIbz0zHN6hvUXU07ff7k76h_dXdmX4yWT3EX8f8,2388
32
+ serenecode/ports/type_checker.py,sha256=SW3tisueVbXhQGa7u9SmYqkIqamcSqEBJk9sn_lMIko,1964
33
+ serenecode/templates/__init__.py,sha256=hqb8CZofS8hRgp33bd1whg_N9AOPF9YccvtcE8Wtg0U,187
34
+ serenecode/templates/content.py,sha256=_dBwXcoHQuEH3T-G_sqV4L9hYW0wMlQpAaZ1eBh5cTo,9665
35
+ serenecode-0.1.0.dist-info/METADATA,sha256=Pv0pMartBZyLJ2nGHtWi-tMYZI2w7GS3uLiU__dVt1s,25822
36
+ serenecode-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
37
+ serenecode-0.1.0.dist-info/entry_points.txt,sha256=O1t4vlREEMT60IH5bNNnsnp5JdXGSnrdZtF3EAi5ZWE,51
38
+ serenecode-0.1.0.dist-info/licenses/LICENSE,sha256=YFvKSi6mWdaKE3I_BsTAj9kY3zIjFL1I4AfQLnGWsP8,1067
39
+ serenecode-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ serenecode = serenecode.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 helgster77
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.