kproj 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.
- kproj/__init__.py +4 -0
- kproj/__main__.py +8 -0
- kproj/application/__init__.py +22 -0
- kproj/application/publish_workflow.py +948 -0
- kproj/cli/__init__.py +8 -0
- kproj/cli/main.py +234 -0
- kproj/common/__init__.py +40 -0
- kproj/common/kicad_install.py +316 -0
- kproj/common/kicad_libraries.py +125 -0
- kproj/common/logging_setup.py +91 -0
- kproj/common/project_docs.py +114 -0
- kproj/common/subprocess_runner.py +239 -0
- kproj/config.py +382 -0
- kproj/formatters/__init__.py +18 -0
- kproj/formatters/front_matter_summary_formatter.py +250 -0
- kproj/formatters/markdown_table_formatter.py +157 -0
- kproj/formatters/stderr_formatter.py +72 -0
- kproj/model/__init__.py +40 -0
- kproj/model/analysis_info.py +77 -0
- kproj/model/export_result.py +37 -0
- kproj/model/finding.py +51 -0
- kproj/model/library_ref.py +48 -0
- kproj/model/project_info.py +83 -0
- kproj/model/publication.py +99 -0
- kproj/model/publish_request.py +37 -0
- kproj/model/publish_result.py +130 -0
- kproj/model/raw_title_block.py +63 -0
- kproj/model/resolved_project.py +71 -0
- kproj/model/severity.py +41 -0
- kproj/services/__init__.py +36 -0
- kproj/services/change_journal.py +219 -0
- kproj/services/design_analyzer.py +397 -0
- kproj/services/fab_packager.py +313 -0
- kproj/services/ibom_generator.py +167 -0
- kproj/services/kicad_project_reader.py +418 -0
- kproj/services/metadata_analyzer.py +398 -0
- kproj/services/pcb_exporter.py +207 -0
- kproj/services/schematic_exporter.py +239 -0
- kproj/services/site_publisher.py +428 -0
- kproj/services/source_packager.py +230 -0
- kproj/services/thumbnail_generator.py +92 -0
- kproj/services/zip_archiver.py +107 -0
- kproj-0.1.0.dist-info/METADATA +91 -0
- kproj-0.1.0.dist-info/RECORD +47 -0
- kproj-0.1.0.dist-info/WHEEL +4 -0
- kproj-0.1.0.dist-info/entry_points.txt +2 -0
- kproj-0.1.0.dist-info/licenses/LICENSE +21 -0
kproj/__init__.py
ADDED
kproj/__main__.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""kproj application layer: orchestrators that drive the publish pipeline.
|
|
2
|
+
|
|
3
|
+
Per ``docs/adr/0006-library-shape-boundary-discipline.md``, modules
|
|
4
|
+
here never import ``argparse`` or call ``sys.exit`` directly. They
|
|
5
|
+
operate on :class:`PublishRequest` and return :class:`PublishResult`.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from __future__ import annotations
|
|
9
|
+
|
|
10
|
+
from .publish_workflow import (
|
|
11
|
+
Outcome,
|
|
12
|
+
PublishRequest,
|
|
13
|
+
PublishResult,
|
|
14
|
+
PublishWorkflow,
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
"Outcome",
|
|
19
|
+
"PublishRequest",
|
|
20
|
+
"PublishResult",
|
|
21
|
+
"PublishWorkflow",
|
|
22
|
+
]
|