code2docs 0.1.7__tar.gz → 0.2.1__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-0.1.7 → code2docs-0.2.1}/PKG-INFO +3 -3
- {code2docs-0.1.7 → code2docs-0.2.1}/README.md +2 -2
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/__init__.py +1 -1
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs.egg-info/PKG-INFO +3 -3
- {code2docs-0.1.7 → code2docs-0.2.1}/pyproject.toml +1 -1
- {code2docs-0.1.7 → code2docs-0.2.1}/LICENSE +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/__main__.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/analyzers/__init__.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/analyzers/dependency_scanner.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/analyzers/docstring_extractor.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/analyzers/endpoint_detector.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/analyzers/project_scanner.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/cli.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/config.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/formatters/__init__.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/formatters/badges.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/formatters/markdown.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/formatters/toc.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/__init__.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/api_changelog_gen.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/api_reference_gen.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/architecture_gen.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/changelog_gen.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/coverage_gen.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/depgraph_gen.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/examples_gen.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/mkdocs_gen.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/module_docs_gen.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/generators/readme_gen.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/sync/__init__.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/sync/differ.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/sync/updater.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/sync/watcher.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/templates/api_module.md.j2 +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/templates/architecture.md.j2 +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/templates/example_usage.py.j2 +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/templates/index.md.j2 +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/templates/module_doc.md.j2 +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs/templates/readme.md.j2 +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs.egg-info/SOURCES.txt +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs.egg-info/dependency_links.txt +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs.egg-info/entry_points.txt +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs.egg-info/requires.txt +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/code2docs.egg-info/top_level.txt +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/setup.cfg +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/tests/test_analyzers.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/tests/test_cli.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/tests/test_code2docs.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/tests/test_config.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/tests/test_formatters.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/tests/test_generators.py +0 -0
- {code2docs-0.1.7 → code2docs-0.2.1}/tests/test_sync.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code2docs
|
|
3
|
-
Version: 0.1
|
|
3
|
+
Version: 0.2.1
|
|
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
|
|
@@ -40,7 +40,7 @@ Dynamic: license-file
|
|
|
40
40
|
|
|
41
41
|
# code2docs
|
|
42
42
|
|
|
43
|
-
  
|
|
44
44
|
|
|
45
45
|
> Auto-generate and sync project documentation from source code analysis.
|
|
46
46
|
|
|
@@ -180,7 +180,7 @@ code2docs can update only specific sections of an existing README using markers:
|
|
|
180
180
|
```markdown
|
|
181
181
|
<!-- code2docs:start --># code2docs
|
|
182
182
|
|
|
183
|
-
   
|
|
184
184
|
> **153** functions | **30** classes | **28** files | CC̄ = 0.0
|
|
185
185
|
|
|
186
186
|
## Installation
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# code2docs
|
|
2
2
|
|
|
3
|
-
  
|
|
4
4
|
|
|
5
5
|
> Auto-generate and sync project documentation from source code analysis.
|
|
6
6
|
|
|
@@ -140,7 +140,7 @@ code2docs can update only specific sections of an existing README using markers:
|
|
|
140
140
|
```markdown
|
|
141
141
|
<!-- code2docs:start --># code2docs
|
|
142
142
|
|
|
143
|
-
   
|
|
144
144
|
> **153** functions | **30** classes | **28** files | CC̄ = 0.0
|
|
145
145
|
|
|
146
146
|
## Installation
|
|
@@ -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__ = "0.1
|
|
8
|
+
__version__ = "0.2.1"
|
|
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: 0.1
|
|
3
|
+
Version: 0.2.1
|
|
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
|
|
@@ -40,7 +40,7 @@ Dynamic: license-file
|
|
|
40
40
|
|
|
41
41
|
# code2docs
|
|
42
42
|
|
|
43
|
-
  
|
|
44
44
|
|
|
45
45
|
> Auto-generate and sync project documentation from source code analysis.
|
|
46
46
|
|
|
@@ -180,7 +180,7 @@ code2docs can update only specific sections of an existing README using markers:
|
|
|
180
180
|
```markdown
|
|
181
181
|
<!-- code2docs:start --># code2docs
|
|
182
182
|
|
|
183
|
-
   
|
|
184
184
|
> **153** functions | **30** classes | **28** files | CC̄ = 0.0
|
|
185
185
|
|
|
186
186
|
## Installation
|
|
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
|