smart-commit-cli 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 (53) hide show
  1. smart_commit/__init__.py +6 -0
  2. smart_commit/ai/__init__.py +7 -0
  3. smart_commit/ai/client.py +123 -0
  4. smart_commit/ai/reviewer.py +91 -0
  5. smart_commit/ai.py +136 -0
  6. smart_commit/analysis/__init__.py +7 -0
  7. smart_commit/analysis/ast_parser.py +173 -0
  8. smart_commit/analysis/dependency_graph.py +114 -0
  9. smart_commit/analysis/diff_parser.py +172 -0
  10. smart_commit/analysis/summarizer.py +101 -0
  11. smart_commit/analysis/symbol_extractor.py +88 -0
  12. smart_commit/benchmark.py +88 -0
  13. smart_commit/cache.py +65 -0
  14. smart_commit/cli.py +391 -0
  15. smart_commit/clustering/__init__.py +7 -0
  16. smart_commit/clustering/graph_clustering.py +78 -0
  17. smart_commit/clustering/heuristic.py +178 -0
  18. smart_commit/clustering/semantic.py +201 -0
  19. smart_commit/clustering.py +186 -0
  20. smart_commit/commit_messages.py +232 -0
  21. smart_commit/committer.py +91 -0
  22. smart_commit/config.py +88 -0
  23. smart_commit/constants.py +92 -0
  24. smart_commit/diff_parser.py +158 -0
  25. smart_commit/embeddings/__init__.py +7 -0
  26. smart_commit/embeddings/generator.py +128 -0
  27. smart_commit/embeddings/similarity.py +159 -0
  28. smart_commit/embeddings.py +108 -0
  29. smart_commit/exceptions.py +102 -0
  30. smart_commit/execution/__init__.py +6 -0
  31. smart_commit/execution/committer.py +102 -0
  32. smart_commit/git/__init__.py +8 -0
  33. smart_commit/git/safety.py +75 -0
  34. smart_commit/git/scanner.py +182 -0
  35. smart_commit/git/service.py +129 -0
  36. smart_commit/git_service.py +302 -0
  37. smart_commit/logger.py +99 -0
  38. smart_commit/models.py +73 -0
  39. smart_commit/plugins/__init__.py +6 -0
  40. smart_commit/plugins/base.py +135 -0
  41. smart_commit/plugins/django.py +40 -0
  42. smart_commit/plugins/fastapi.py +39 -0
  43. smart_commit/plugins/react.py +49 -0
  44. smart_commit/preview/__init__.py +6 -0
  45. smart_commit/preview/editor.py +224 -0
  46. smart_commit/preview/renderer.py +94 -0
  47. smart_commit/preview.py +131 -0
  48. smart_commit/summarizer.py +93 -0
  49. smart_commit/utils.py +83 -0
  50. smart_commit_cli-0.1.0.dist-info/METADATA +804 -0
  51. smart_commit_cli-0.1.0.dist-info/RECORD +53 -0
  52. smart_commit_cli-0.1.0.dist-info/WHEEL +4 -0
  53. smart_commit_cli-0.1.0.dist-info/entry_points.txt +2 -0
@@ -0,0 +1,53 @@
1
+ smart_commit/__init__.py,sha256=fyirAgRj5B7lfUI6mciCrOly3tT1cnGkDOsSCnb9Ong,141
2
+ smart_commit/ai.py,sha256=le4KAC9jG4VymoEaM6rrbkcV-0rFaG-vkYQHDQfOd50,4636
3
+ smart_commit/benchmark.py,sha256=zWejX_VOJVGc2_HnI_2JbEIfyDUEn6-arHAhRAcqoqM,3108
4
+ smart_commit/cache.py,sha256=6yYlJP3yaNl7RrCGBitvZcza3PdiYdDPSMuvCT0AjvU,2055
5
+ smart_commit/cli.py,sha256=m9Fybf3Vyump-oU3TYkncZ4_J8sFH19bhrlThH5JRt4,14696
6
+ smart_commit/clustering.py,sha256=Q-qjBzZsvngs00_UsAfRtm0PwhBwvMsQ4JoWZHjr_Sw,6362
7
+ smart_commit/commit_messages.py,sha256=BNOAtijpgId8rQCTGiFc-9eqUsjTuajwSz7sAQ8qQGM,8372
8
+ smart_commit/committer.py,sha256=wYDGF-ZTHmG2rjdG5P3BiQ4RJ08f9oP1XbGOP_JmXGM,2782
9
+ smart_commit/config.py,sha256=yIfzw8fJcLWnsSc0th0pUs2tQEQXzojBMo_Mu1zXomw,3281
10
+ smart_commit/constants.py,sha256=XafmfFHtjw0kUgoIj7fMYBjJs5LBnLSyiT_ifVGb14s,2095
11
+ smart_commit/diff_parser.py,sha256=cCRN55GUnTTngrW9zIFOmIAsNbK2AgN3PdCInzdQsiY,5651
12
+ smart_commit/embeddings.py,sha256=pHFEyrtTHrZWbiKI744RTq7PZWJylSw0mlKZiartzNc,3345
13
+ smart_commit/exceptions.py,sha256=cCLsYF7GTjvnH4F4gEDRDOYOQq_zHxnntYv7VracRas,2031
14
+ smart_commit/git_service.py,sha256=U0YExsJyknPZ1kS6THFc7ri7yvU61sqsYnY2ZtlxLa8,9459
15
+ smart_commit/logger.py,sha256=Hkh9kJKaYSq8QUgeSPSmWojGLBUlWX6BcNYBZnq-GA0,2725
16
+ smart_commit/models.py,sha256=T5h7sZNyh71h9K8mPvJBgiDeYtGWN2aRxVKkB2SxN_s,1983
17
+ smart_commit/preview.py,sha256=dXgGBFvhpZx2tjz2rmrzDdy4YWmFMt5Eb1lNozJd26k,4590
18
+ smart_commit/summarizer.py,sha256=SucAZfi7qGSQzQU3UYpMVWzvbj3YWI0mB9rrFKs3lYA,2745
19
+ smart_commit/utils.py,sha256=6ovuGz5VmcV0BeWW2IcNcgEOXgFrrFl0VTAyjQznAuU,2307
20
+ smart_commit/ai/__init__.py,sha256=fDHFvJB-bLQnXu0az0FaKpvA_mY-N29lw0Jh5d89Y-Q,139
21
+ smart_commit/ai/client.py,sha256=_6H9OgJt1w_C5wGzdCxKXbqYOcFQCU6NqRRu5M8M_Yg,4067
22
+ smart_commit/ai/reviewer.py,sha256=5mWSQQLw0v8BkReu831AQZqKFU41SciprnDL0rrWzcc,2758
23
+ smart_commit/analysis/__init__.py,sha256=Cwfq04ux5Hkk5ZqSdZHPrGkpwBbsd7VWPO5znTIOK6M,144
24
+ smart_commit/analysis/ast_parser.py,sha256=OC2wNbMsaiSzlENgw1oEGU5zPc3S6bZYv00UO27s1Cc,6112
25
+ smart_commit/analysis/dependency_graph.py,sha256=jhiT9e6ozbfYgX9RujSRbKsdFSAbnAdO4oHPzMaVYnU,4692
26
+ smart_commit/analysis/diff_parser.py,sha256=ijPIVidmBrR7AcJlEPmU7g0VicLJQUINYoek7Jum-K4,6000
27
+ smart_commit/analysis/summarizer.py,sha256=tCRsN78EBrqSWG1LB4G42AEVZ78Gp4gPsVP-folrFWA,3437
28
+ smart_commit/analysis/symbol_extractor.py,sha256=IxwI4x3ePU_Kqv-i5-HbPqPqBjpn5DaH7kfDUMj50aU,3508
29
+ smart_commit/clustering/__init__.py,sha256=--X4V1u7joGck0gMI5FsFekKXMyIRM87RQ9dQamVsjw,176
30
+ smart_commit/clustering/graph_clustering.py,sha256=C7eaYN2ALFswcJR8G8UMTRP7ICrx9Bh2MShXmL4yLzU,2577
31
+ smart_commit/clustering/heuristic.py,sha256=KOuAHnzXjUfiI-v-_eJkUvCmkdb5wvLkS2LcBh8ISNg,6810
32
+ smart_commit/clustering/semantic.py,sha256=Jp2UA-r0iaOlfMi1AimWkK5qAgV3Zk0fuiSfd2o2gtU,8066
33
+ smart_commit/embeddings/__init__.py,sha256=gGG2NuAFp0scyBfUkXrDdVR2FZhtw2RyuKCgcM6x2jA,172
34
+ smart_commit/embeddings/generator.py,sha256=vlIyqvew6JUP9IHw9UJLKNjHpISmTkMcKJm5IomVgro,3978
35
+ smart_commit/embeddings/similarity.py,sha256=tntEWNY7ex1cS4C9F0rNjxGop_60Px2sqVGhgXIDgqE,6102
36
+ smart_commit/execution/__init__.py,sha256=Ze7wnPjymbCh6YaXoIHIvu7aCUYlsx_UeAvjIiAizOQ,91
37
+ smart_commit/execution/committer.py,sha256=wQspY3IBFoDQ2tPra9Bt_3UW3vegzpSCYgY96VRhDw4,3346
38
+ smart_commit/git/__init__.py,sha256=C2aOYmBvjfZf5Fu3UIkX2HomWMWI3D5lYcuxXaRjBwc,209
39
+ smart_commit/git/safety.py,sha256=ejy-CfX7hmiE7nV68KPRodnaN_Lwwze013Uv_xZkfoQ,2043
40
+ smart_commit/git/scanner.py,sha256=J5oVvAalM2euS3VBC7p610L0UZ2pf6kMlyL1ACCpxq8,6593
41
+ smart_commit/git/service.py,sha256=C-S8DcGU1AwhcHkNkkZ-671gD0EmLo85LjWr83BIJ3o,4607
42
+ smart_commit/plugins/__init__.py,sha256=G09Tan4GW0IJpdcPHqsq2ZjyI_DlRVzOLzbELAOR3wE,118
43
+ smart_commit/plugins/base.py,sha256=EYRPfJDEtFa3GwCOabXJ6M5K1ywgSDk7wEomKGZOtRg,3626
44
+ smart_commit/plugins/django.py,sha256=zTwrqMgWOTiDShaL-8G1o185r-rUVlalami44AdLDpQ,1185
45
+ smart_commit/plugins/fastapi.py,sha256=bnBwvt4UwXmhZmPm_BCn3fXdvjpisQPxbEP7KJJATQk,1246
46
+ smart_commit/plugins/react.py,sha256=XgC7laGH3WY_Blo4hY-dovcZbnKUdka0XwwvvKlbQAY,1567
47
+ smart_commit/preview/__init__.py,sha256=NbEIdarqxFsnPBOjvA1ByTnvzBob4asKn1EQa8gjtco,159
48
+ smart_commit/preview/editor.py,sha256=f-h2dM30NXG6qfLVMa8-sQ4-QUdWamAEeH2Z8cQ0m5Y,7537
49
+ smart_commit/preview/renderer.py,sha256=BZh-flx3X2t8RaVM_U3BuqkDNNumulD0UHOBGkKJ8oA,4057
50
+ smart_commit_cli-0.1.0.dist-info/METADATA,sha256=o4Q3EK_uNP_WqQnWOZ3eJ8IhE4IDavEYRPHkwo7A_bw,18866
51
+ smart_commit_cli-0.1.0.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
52
+ smart_commit_cli-0.1.0.dist-info/entry_points.txt,sha256=TPu9XAKWRb_MxloF9ba8jYzsF-tLyVSOPpMmakl3BA0,54
53
+ smart_commit_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.31.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ smart-commit = smart_commit.cli:app