patchwork-conventions 0.1.3__tar.gz → 0.1.5__tar.gz

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 (30) hide show
  1. {patchwork_conventions-0.1.3/src/patchwork_conventions.egg-info → patchwork_conventions-0.1.5}/PKG-INFO +3 -1
  2. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/README.md +2 -0
  3. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/pyproject.toml +1 -1
  4. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5/src/patchwork_conventions.egg-info}/PKG-INFO +3 -1
  5. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/LICENSE +0 -0
  6. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/setup.cfg +0 -0
  7. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/__init__.py +0 -0
  8. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/cli.py +0 -0
  9. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/mcp/__init__.py +0 -0
  10. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/mcp/server.py +0 -0
  11. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/miners/__init__.py +0 -0
  12. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/miners/api_patterns.py +0 -0
  13. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/miners/ast_base.py +0 -0
  14. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/miners/config_detector.py +0 -0
  15. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/miners/error_handling.py +0 -0
  16. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/miners/git_patterns.py +0 -0
  17. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/miners/imports.py +0 -0
  18. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/miners/naming.py +0 -0
  19. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/miners/structure.py +0 -0
  20. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/miners/testing.py +0 -0
  21. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/output/__init__.py +0 -0
  22. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/output/report.py +0 -0
  23. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork/scanner.py +0 -0
  24. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork_conventions.egg-info/SOURCES.txt +0 -0
  25. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork_conventions.egg-info/dependency_links.txt +0 -0
  26. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork_conventions.egg-info/entry_points.txt +0 -0
  27. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork_conventions.egg-info/requires.txt +0 -0
  28. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/src/patchwork_conventions.egg-info/top_level.txt +0 -0
  29. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/tests/test_naming.py +0 -0
  30. {patchwork_conventions-0.1.3 → patchwork_conventions-0.1.5}/tests/test_scanner.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: patchwork-conventions
3
- Version: 0.1.3
3
+ Version: 0.1.5
4
4
  Summary: Mine your codebase. Generate CONVENTIONS.md. Stop AI agents from making up your style.
5
5
  Author: patchwork contributors
6
6
  License: MIT
@@ -45,6 +45,8 @@ Dynamic: license-file
45
45
 
46
46
  # patchwork
47
47
 
48
+ <!-- mcp-name: io.github.SaiNarayana-B/patchwork -->
49
+
48
50
  **Mine your codebase. Generate CONVENTIONS.md. Stop AI agents from making up your style.**
49
51
 
50
52
  [![PyPI](https://img.shields.io/pypi/v/patchwork-conventions)](https://pypi.org/project/patchwork-conventions/)
@@ -1,5 +1,7 @@
1
1
  # patchwork
2
2
 
3
+ <!-- mcp-name: io.github.SaiNarayana-B/patchwork -->
4
+
3
5
  **Mine your codebase. Generate CONVENTIONS.md. Stop AI agents from making up your style.**
4
6
 
5
7
  [![PyPI](https://img.shields.io/pypi/v/patchwork-conventions)](https://pypi.org/project/patchwork-conventions/)
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "patchwork-conventions"
7
- version = "0.1.3"
7
+ version = "0.1.5"
8
8
  description = "Mine your codebase. Generate CONVENTIONS.md. Stop AI agents from making up your style."
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: patchwork-conventions
3
- Version: 0.1.3
3
+ Version: 0.1.5
4
4
  Summary: Mine your codebase. Generate CONVENTIONS.md. Stop AI agents from making up your style.
5
5
  Author: patchwork contributors
6
6
  License: MIT
@@ -45,6 +45,8 @@ Dynamic: license-file
45
45
 
46
46
  # patchwork
47
47
 
48
+ <!-- mcp-name: io.github.SaiNarayana-B/patchwork -->
49
+
48
50
  **Mine your codebase. Generate CONVENTIONS.md. Stop AI agents from making up your style.**
49
51
 
50
52
  [![PyPI](https://img.shields.io/pypi/v/patchwork-conventions)](https://pypi.org/project/patchwork-conventions/)