code2docs 3.0.23__tar.gz → 3.0.25__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.
- {code2docs-3.0.23 → code2docs-3.0.25}/PKG-INFO +4 -4
- {code2docs-3.0.23 → code2docs-3.0.25}/README.md +3 -3
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/__init__.py +1 -1
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs.egg-info/PKG-INFO +4 -4
- {code2docs-3.0.23 → code2docs-3.0.25}/pyproject.toml +1 -1
- {code2docs-3.0.23 → code2docs-3.0.25}/LICENSE +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/__main__.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/analyzers/__init__.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/analyzers/dependency_scanner.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/analyzers/docstring_extractor.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/analyzers/endpoint_detector.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/analyzers/project_scanner.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/base.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/cli.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/config.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/examples/advanced_usage.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/examples/quickstart.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/formatters/__init__.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/formatters/badges.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/formatters/markdown.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/formatters/toc.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/__init__.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/_registry_adapters.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/_source_links.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/api_changelog_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/api_reference_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/architecture_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/changelog_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/code2llm_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/config_docs_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/contributing_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/coverage_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/depgraph_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/examples_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/getting_started_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/mkdocs_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/module_docs_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/org_readme_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/generators/readme_gen.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/llm_helper.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/registry.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/sync/__init__.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/sync/differ.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/sync/updater.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/sync/watcher.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/templates/api_module.md.j2 +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/templates/architecture.md.j2 +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/templates/example_usage.py.j2 +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/templates/index.md.j2 +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/templates/module_doc.md.j2 +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs/templates/readme.md.j2 +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs.egg-info/SOURCES.txt +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs.egg-info/dependency_links.txt +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs.egg-info/entry_points.txt +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs.egg-info/requires.txt +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/code2docs.egg-info/top_level.txt +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/setup.cfg +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/tests/test_analyzers.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/tests/test_cli.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/tests/test_code2docs.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/tests/test_config.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/tests/test_formatters.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/tests/test_generators.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/tests/test_llm_helper.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/tests/test_registry.py +0 -0
- {code2docs-3.0.23 → code2docs-3.0.25}/tests/test_sync.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code2docs
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.25
|
|
4
4
|
Summary: Auto-generate and sync project documentation from source code analysis
|
|
5
5
|
Author-email: Tom Sapletta <tom@sapletta.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -56,7 +56,7 @@ Dynamic: license-file
|
|
|
56
56
|
|
|
57
57
|
## AI Cost Tracking
|
|
58
58
|
|
|
59
|
-
    
|
|
60
60
|
  
|
|
61
61
|
|
|
62
62
|
- 🤖 **LLM usage:** $7.5000 (52 commits)
|
|
@@ -68,7 +68,7 @@ Generated on 2026-03-31 using [openrouter/qwen/qwen3-coder-next](https://openrou
|
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
|
|
71
|
-
  
|
|
72
72
|
|
|
73
73
|
> Auto-generate and sync project documentation from source code analysis.
|
|
74
74
|
|
|
@@ -208,7 +208,7 @@ code2docs can update only specific sections of an existing README using markers:
|
|
|
208
208
|
```markdown
|
|
209
209
|
<!-- code2docs:start --># code2docs
|
|
210
210
|
|
|
211
|
-
   
|
|
212
212
|
> **276** functions | **57** classes | **51** files | CC̄ = 3.8
|
|
213
213
|
|
|
214
214
|
> Auto-generated project documentation from source code analysis.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
## AI Cost Tracking
|
|
5
5
|
|
|
6
|
-
    
|
|
7
7
|
  
|
|
8
8
|
|
|
9
9
|
- 🤖 **LLM usage:** $7.5000 (52 commits)
|
|
@@ -15,7 +15,7 @@ Generated on 2026-03-31 using [openrouter/qwen/qwen3-coder-next](https://openrou
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
  
|
|
19
19
|
|
|
20
20
|
> Auto-generate and sync project documentation from source code analysis.
|
|
21
21
|
|
|
@@ -155,7 +155,7 @@ code2docs can update only specific sections of an existing README using markers:
|
|
|
155
155
|
```markdown
|
|
156
156
|
<!-- code2docs:start --># code2docs
|
|
157
157
|
|
|
158
|
-
   
|
|
159
159
|
> **276** functions | **57** classes | **51** files | CC̄ = 3.8
|
|
160
160
|
|
|
161
161
|
> Auto-generated project documentation from source code analysis.
|
|
@@ -5,7 +5,7 @@ Uses code2llm's AnalysisResult to produce human-readable documentation:
|
|
|
5
5
|
README.md, API references, module docs, examples, and architecture diagrams.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
__version__ = "3.0.
|
|
8
|
+
__version__ = "3.0.25"
|
|
9
9
|
__author__ = "Tom Sapletta"
|
|
10
10
|
|
|
11
11
|
from .config import Code2DocsConfig
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code2docs
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.25
|
|
4
4
|
Summary: Auto-generate and sync project documentation from source code analysis
|
|
5
5
|
Author-email: Tom Sapletta <tom@sapletta.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -56,7 +56,7 @@ Dynamic: license-file
|
|
|
56
56
|
|
|
57
57
|
## AI Cost Tracking
|
|
58
58
|
|
|
59
|
-
    
|
|
60
60
|
  
|
|
61
61
|
|
|
62
62
|
- 🤖 **LLM usage:** $7.5000 (52 commits)
|
|
@@ -68,7 +68,7 @@ Generated on 2026-03-31 using [openrouter/qwen/qwen3-coder-next](https://openrou
|
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
|
|
71
|
-
  
|
|
72
72
|
|
|
73
73
|
> Auto-generate and sync project documentation from source code analysis.
|
|
74
74
|
|
|
@@ -208,7 +208,7 @@ code2docs can update only specific sections of an existing README using markers:
|
|
|
208
208
|
```markdown
|
|
209
209
|
<!-- code2docs:start --># code2docs
|
|
210
210
|
|
|
211
|
-
   
|
|
212
212
|
> **276** functions | **57** classes | **51** files | CC̄ = 3.8
|
|
213
213
|
|
|
214
214
|
> Auto-generated project documentation from source code analysis.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|