python-hwpx 2.11.1__tar.gz → 2.15.0__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.
- {python_hwpx-2.11.1/src/python_hwpx.egg-info → python_hwpx-2.15.0}/PKG-INFO +7 -1
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/pyproject.toml +21 -1
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/__init__.py +10 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/authoring.py +415 -24
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/builder/__init__.py +8 -1
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/builder/core.py +110 -2
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/builder/report.py +88 -0
- python_hwpx-2.15.0/src/hwpx/conformance/__init__.py +54 -0
- python_hwpx-2.15.0/src/hwpx/conformance/badges.py +198 -0
- python_hwpx-2.15.0/src/hwpx/conformance/corpus/corpus.json +53 -0
- python_hwpx-2.15.0/src/hwpx/conformance/corpus/meeting_summary.hwpx +0 -0
- python_hwpx-2.15.0/src/hwpx/conformance/corpus/notice.hwpx +0 -0
- python_hwpx-2.15.0/src/hwpx/conformance/corpus/report_table.hwpx +0 -0
- python_hwpx-2.15.0/src/hwpx/conformance/corpus.py +260 -0
- python_hwpx-2.15.0/src/hwpx/conformance/report.py +223 -0
- python_hwpx-2.15.0/src/hwpx/conformance/roundtrip_batch.py +171 -0
- python_hwpx-2.15.0/src/hwpx/conformance/runner.py +395 -0
- python_hwpx-2.15.0/src/hwpx/design/__init__.py +30 -0
- python_hwpx-2.15.0/src/hwpx/design/_support.py +144 -0
- python_hwpx-2.15.0/src/hwpx/design/composer.py +282 -0
- python_hwpx-2.15.0/src/hwpx/design/harvest.py +305 -0
- python_hwpx-2.15.0/src/hwpx/design/plan.py +69 -0
- python_hwpx-2.15.0/src/hwpx/design/profile.py +88 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/application_form/fragments/body.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/application_form/fragments/heading.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/application_form/fragments/info_table.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/application_form/fragments/title.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/application_form/profile.json +25 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/application_form/template.hwpx +0 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/official_notice/fragments/body.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/official_notice/fragments/heading.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/official_notice/fragments/info_table.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/official_notice/fragments/title.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/official_notice/profile.json +25 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/official_notice/template.hwpx +0 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/report/fragments/body.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/report/fragments/heading.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/report/fragments/info_table.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/report/fragments/title.xml +1 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/report/profile.json +25 -0
- python_hwpx-2.15.0/src/hwpx/design/profiles/report/template.hwpx +0 -0
- python_hwpx-2.15.0/src/hwpx/design/validator.py +107 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/document.py +265 -84
- python_hwpx-2.15.0/src/hwpx/exam/__init__.py +22 -0
- python_hwpx-2.15.0/src/hwpx/exam/compose.py +237 -0
- python_hwpx-2.15.0/src/hwpx/exam/ir.py +41 -0
- python_hwpx-2.15.0/src/hwpx/exam/measure.py +147 -0
- python_hwpx-2.15.0/src/hwpx/exam/parser.py +145 -0
- python_hwpx-2.15.0/src/hwpx/exam/profile.py +116 -0
- python_hwpx-2.15.0/src/hwpx/form_fit/__init__.py +51 -0
- python_hwpx-2.15.0/src/hwpx/form_fit/apply.py +96 -0
- python_hwpx-2.15.0/src/hwpx/form_fit/engine.py +294 -0
- python_hwpx-2.15.0/src/hwpx/form_fit/measure.py +369 -0
- python_hwpx-2.15.0/src/hwpx/form_fit/policy.py +84 -0
- python_hwpx-2.15.0/src/hwpx/form_fit/report.py +93 -0
- python_hwpx-2.15.0/src/hwpx/form_fit/seal.py +451 -0
- python_hwpx-2.15.0/src/hwpx/form_fit/wordbox.py +1212 -0
- python_hwpx-2.15.0/src/hwpx/layout/__init__.py +36 -0
- python_hwpx-2.15.0/src/hwpx/layout/lint.py +384 -0
- python_hwpx-2.15.0/src/hwpx/layout/report.py +121 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/opc/package.py +12 -5
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/_document_impl.py +302 -7
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/body.py +45 -0
- python_hwpx-2.15.0/src/hwpx/oxml/canonical_defaults.py +95 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/header.py +16 -2
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/namespaces.py +16 -3
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/utils.py +10 -2
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/patch.py +76 -13
- python_hwpx-2.15.0/src/hwpx/quality/__init__.py +45 -0
- python_hwpx-2.15.0/src/hwpx/quality/ledger.py +111 -0
- python_hwpx-2.15.0/src/hwpx/quality/policy.py +95 -0
- python_hwpx-2.15.0/src/hwpx/quality/report.py +228 -0
- python_hwpx-2.15.0/src/hwpx/quality/save_pipeline.py +556 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/template_formfit.py +5 -1
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/id_integrity.py +4 -1
- python_hwpx-2.15.0/src/hwpx/tools/idempotence.py +139 -0
- python_hwpx-2.15.0/src/hwpx/tools/ir_equality.py +137 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/mail_merge.py +197 -4
- python_hwpx-2.15.0/src/hwpx/tools/package_reconcile.py +72 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/package_validator.py +16 -6
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/validator.py +6 -3
- python_hwpx-2.15.0/src/hwpx/visual/__init__.py +78 -0
- python_hwpx-2.15.0/src/hwpx/visual/_render_hwpx.ps1 +72 -0
- python_hwpx-2.15.0/src/hwpx/visual/_render_hwpx_mac.applescript +222 -0
- python_hwpx-2.15.0/src/hwpx/visual/detectors.py +152 -0
- python_hwpx-2.15.0/src/hwpx/visual/diff.py +153 -0
- python_hwpx-2.15.0/src/hwpx/visual/masks.py +51 -0
- python_hwpx-2.15.0/src/hwpx/visual/oracle.py +577 -0
- python_hwpx-2.15.0/src/hwpx/visual/report.py +47 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0/src/python_hwpx.egg-info}/PKG-INFO +7 -1
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/python_hwpx.egg-info/SOURCES.txt +97 -1
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/python_hwpx.egg-info/entry_points.txt +1 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/python_hwpx.egg-info/requires.txt +8 -0
- python_hwpx-2.15.0/tests/test_comment_node_robustness.py +85 -0
- python_hwpx-2.15.0/tests/test_conformance.py +426 -0
- python_hwpx-2.15.0/tests/test_design_builder.py +297 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_document_plan.py +109 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_document_save_api.py +3 -1
- python_hwpx-2.15.0/tests/test_exam_compose.py +85 -0
- python_hwpx-2.15.0/tests/test_exam_compose_oracle.py +39 -0
- python_hwpx-2.15.0/tests/test_exam_fixtures.py +20 -0
- python_hwpx-2.15.0/tests/test_exam_ir.py +19 -0
- python_hwpx-2.15.0/tests/test_exam_measure.py +47 -0
- python_hwpx-2.15.0/tests/test_exam_parser.py +74 -0
- python_hwpx-2.15.0/tests/test_exam_profile.py +39 -0
- python_hwpx-2.15.0/tests/test_form_fit.py +218 -0
- python_hwpx-2.15.0/tests/test_form_fit_integration.py +157 -0
- python_hwpx-2.15.0/tests/test_form_fit_seal.py +125 -0
- python_hwpx-2.15.0/tests/test_form_fit_seal_placement.py +378 -0
- python_hwpx-2.15.0/tests/test_form_fit_wordbox.py +1096 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_image_object_workflow.py +12 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_kordoc_absorption.py +61 -0
- python_hwpx-2.15.0/tests/test_layout_lint.py +455 -0
- python_hwpx-2.15.0/tests/test_mail_merge_fit.py +129 -0
- python_hwpx-2.15.0/tests/test_mail_merge_xlsx.py +40 -0
- python_hwpx-2.15.0/tests/test_paragraph_keep_together.py +46 -0
- python_hwpx-2.15.0/tests/test_question_split_detector.py +27 -0
- python_hwpx-2.15.0/tests/test_rhwp_t1_gates.py +276 -0
- python_hwpx-2.15.0/tests/test_rhwp_t2_verification.py +258 -0
- python_hwpx-2.15.0/tests/test_save_pipeline.py +284 -0
- python_hwpx-2.15.0/tests/test_save_pipeline_no_bypass.py +134 -0
- python_hwpx-2.15.0/tests/test_set_paragraph_format_keep.py +73 -0
- python_hwpx-2.15.0/tests/test_validator_comment_nodes.py +56 -0
- python_hwpx-2.15.0/tests/test_visual_oracle.py +300 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/LICENSE +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/NOTICE +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/README.md +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/setup.cfg +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/data/Skeleton.hwpx +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/form_fill.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/opc/relationships.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/opc/security.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/opc/xml_utils.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/__init__.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/common.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/document.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/header_part.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/memo.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/numbering.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/objects.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/paragraph.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/parser.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/run.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/schema.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/section.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/simple_parts.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/oxml/table.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/package.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/presets/__init__.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/presets/proposal.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/py.typed +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/templates.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/__init__.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/_schemas/header.xsd +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/_schemas/section.xsd +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/advanced_generators.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/archive_cli.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/doc_diff.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/exporter.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/fuzz/__init__.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/fuzz/__main__.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/fuzz/catalog.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/fuzz/generator.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/fuzz/minimize.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/fuzz/runner.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/generic_inventory.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/layout_preview.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/markdown_export.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/object_finder.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/official_lint.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/page_guard.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/recover.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/repair.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/report_parser.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/report_utils.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/roundtrip_diff.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/style_profile.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/table_cleanup.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/table_compute.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/table_navigation.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/template_analyzer.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/text_extract_cli.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/hwpx/tools/text_extractor.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/python_hwpx.egg-info/dependency_links.txt +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/src/python_hwpx.egg-info/top_level.txt +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_advanced_generators.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_builder_core.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_builder_plan_v2.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_builder_vertical_slice.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_coverage_promotion.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_coverage_targets.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_deviations_registry.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_doc_diff.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_document_context_manager.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_document_formatting.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_document_plan_computed_fields.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_existing_document_format_editing.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_form_fields.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_form_fill_split_run.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_fuzz_loop.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_fuzz_regressions.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_gap_closure_tools.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_government_report_preset.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_government_table_profile.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_hp_tab_support.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_hwpxlib_corpus_read.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_id_generator_range.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_id_integrity.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_inline_models.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_integration_hwpx_compatibility.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_integration_roundtrip.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_layout_preview.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_mail_merge_table_compute.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_markdown_export.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_memo_and_style_editing.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_namespace_handling.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_new_features.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_official_document_style.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_opc_package.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_open_safety_corpus.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_oxml_parsing.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_packaging_license_metadata.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_packaging_py_typed.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_paragraph_section_management.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_proposal_preset.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_recover_broken_zip.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_repair_repack.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_report_parser.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_report_utils.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_repr_snapshots.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_roundtrip_fidelity.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_section_headers.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_skeleton_template_ids.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_split_merged_cell.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_style_profile.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_table_cleanup.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_table_navigation.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_tables_default_border.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_template_analyzer_enrichment.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_template_formfit.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_text_extractor_annotations.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_validation_severity.py +0 -0
- {python_hwpx-2.11.1 → python_hwpx-2.15.0}/tests/test_version_metadata.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-hwpx
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.15.0
|
|
4
4
|
Summary: 한글 없이 HWPX 문서를 열고, 편집하고, 생성하고, 검증하는 Python 자동화 라이브러리
|
|
5
5
|
Author: python-hwpx Maintainers
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -21,6 +21,12 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
License-File: NOTICE
|
|
23
23
|
Requires-Dist: lxml<6,>=4.9
|
|
24
|
+
Provides-Extra: visual
|
|
25
|
+
Requires-Dist: pymupdf>=1.24; extra == "visual"
|
|
26
|
+
Requires-Dist: pillow>=10.0; extra == "visual"
|
|
27
|
+
Requires-Dist: numpy>=1.26; extra == "visual"
|
|
28
|
+
Provides-Extra: xlsx
|
|
29
|
+
Requires-Dist: openpyxl>=3.1; extra == "xlsx"
|
|
24
30
|
Provides-Extra: dev
|
|
25
31
|
Requires-Dist: build>=1.0; extra == "dev"
|
|
26
32
|
Requires-Dist: twine>=4.0; extra == "dev"
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-hwpx"
|
|
7
|
-
version = "2.
|
|
7
|
+
version = "2.15.0"
|
|
8
8
|
description = "한글 없이 HWPX 문서를 열고, 편집하고, 생성하고, 검증하는 Python 자동화 라이브러리"
|
|
9
9
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -29,6 +29,15 @@ dependencies = [
|
|
|
29
29
|
]
|
|
30
30
|
|
|
31
31
|
[project.optional-dependencies]
|
|
32
|
+
visual = [
|
|
33
|
+
"pymupdf>=1.24",
|
|
34
|
+
"pillow>=10.0",
|
|
35
|
+
"numpy>=1.26",
|
|
36
|
+
]
|
|
37
|
+
# Excel(.xlsx/.xlsm) 명부 ingestion for mail_merge. Lazy-imported; absent => clear error.
|
|
38
|
+
xlsx = [
|
|
39
|
+
"openpyxl>=3.1",
|
|
40
|
+
]
|
|
32
41
|
dev = [
|
|
33
42
|
"build>=1.0",
|
|
34
43
|
"twine>=4.0",
|
|
@@ -58,6 +67,7 @@ hwpx-page-guard = "hwpx.tools.page_guard:main"
|
|
|
58
67
|
hwpx-analyze-template = "hwpx.tools.template_analyzer:main"
|
|
59
68
|
hwpx-text-extract = "hwpx.tools.text_extract_cli:main"
|
|
60
69
|
hwpx-repair = "hwpx.tools.repair:main"
|
|
70
|
+
hwpx-conformance = "hwpx.conformance.runner:main"
|
|
61
71
|
|
|
62
72
|
[tool.setuptools]
|
|
63
73
|
package-dir = { "" = "src" }
|
|
@@ -71,6 +81,16 @@ include = ["hwpx*"]
|
|
|
71
81
|
"hwpx" = ["py.typed"]
|
|
72
82
|
"hwpx.tools" = ["_schemas/*.xsd"]
|
|
73
83
|
"hwpx.data" = ["Skeleton.hwpx"]
|
|
84
|
+
"hwpx.visual" = ["_render_hwpx.ps1", "_render_hwpx_mac.applescript"]
|
|
85
|
+
"hwpx.design" = [
|
|
86
|
+
"profiles/*/profile.json",
|
|
87
|
+
"profiles/*/template.hwpx",
|
|
88
|
+
"profiles/*/fragments/*.xml",
|
|
89
|
+
]
|
|
90
|
+
"hwpx.conformance" = [
|
|
91
|
+
"corpus/corpus.json",
|
|
92
|
+
"corpus/*.hwpx",
|
|
93
|
+
]
|
|
74
94
|
|
|
75
95
|
[tool.pytest.ini_options]
|
|
76
96
|
pythonpath = ["src"]
|
|
@@ -94,12 +94,18 @@ from .authoring import (
|
|
|
94
94
|
PlanValidationIssue,
|
|
95
95
|
PlanValidationReport,
|
|
96
96
|
create_document_from_plan,
|
|
97
|
+
get_document_plan_schema,
|
|
97
98
|
inspect_document_authoring_quality,
|
|
98
99
|
inspect_operating_plan_quality,
|
|
99
100
|
normalize_document_plan,
|
|
100
101
|
validate_document_plan,
|
|
101
102
|
)
|
|
102
103
|
from .builder import approval_box
|
|
104
|
+
from .quality import (
|
|
105
|
+
QualityPolicy,
|
|
106
|
+
SavePipeline,
|
|
107
|
+
VisualCompleteReport,
|
|
108
|
+
)
|
|
103
109
|
from .template_formfit import (
|
|
104
110
|
TEMPLATE_FORMFIT_BASELINE_SCHEMA_VERSION,
|
|
105
111
|
TEMPLATE_FORMFIT_PLAN_SCHEMA_VERSION,
|
|
@@ -108,11 +114,15 @@ from .template_formfit import (
|
|
|
108
114
|
)
|
|
109
115
|
|
|
110
116
|
__all__ = [
|
|
117
|
+
"QualityPolicy",
|
|
118
|
+
"SavePipeline",
|
|
119
|
+
"VisualCompleteReport",
|
|
111
120
|
"__version__",
|
|
112
121
|
"AUTHORING_REPORT_VERSION",
|
|
113
122
|
"DEFAULT_NAMESPACES",
|
|
114
123
|
"DEFAULT_STYLE_PRESET",
|
|
115
124
|
"DOCUMENT_PLAN_SCHEMA_VERSION",
|
|
125
|
+
"get_document_plan_schema",
|
|
116
126
|
"DocumentBlock",
|
|
117
127
|
"DocumentPlan",
|
|
118
128
|
"DocumentStylePreset",
|