apothem 0.1.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.
- apothem-0.1.0/LICENSE +21 -0
- apothem-0.1.0/LICENSES/MIT.txt +18 -0
- apothem-0.1.0/PKG-INFO +845 -0
- apothem-0.1.0/README.md +778 -0
- apothem-0.1.0/pyproject.toml +284 -0
- apothem-0.1.0/setup.cfg +4 -0
- apothem-0.1.0/src/apothem/__init__.py +12 -0
- apothem-0.1.0/src/apothem/__main__.py +21 -0
- apothem-0.1.0/src/apothem/agents/README.md +52 -0
- apothem-0.1.0/src/apothem/agents/codebase-explorer.md +86 -0
- apothem-0.1.0/src/apothem/agents/convention-auditor.md +87 -0
- apothem-0.1.0/src/apothem/agents/memory-auditor.md +87 -0
- apothem-0.1.0/src/apothem/agents/quality-gate.md +93 -0
- apothem-0.1.0/src/apothem/audit/_scan_lib.py +175 -0
- apothem-0.1.0/src/apothem/audit/analyze_graph.py +239 -0
- apothem-0.1.0/src/apothem/audit/build_capability_graph.py +471 -0
- apothem-0.1.0/src/apothem/audit/build_inventory.py +674 -0
- apothem-0.1.0/src/apothem/audit/build_plans_provenance.py +1003 -0
- apothem-0.1.0/src/apothem/audit/check_links.py +386 -0
- apothem-0.1.0/src/apothem/audit/classify_artifacts.py +389 -0
- apothem-0.1.0/src/apothem/audit/execute_plans_migration.py +497 -0
- apothem-0.1.0/src/apothem/audit/render_capability_index.py +477 -0
- apothem-0.1.0/src/apothem/audit/render_inventory.py +402 -0
- apothem-0.1.0/src/apothem/audit/scan_ai_surfaces.py +1123 -0
- apothem-0.1.0/src/apothem/audit/scan_ai_surfaces_coarse.py +241 -0
- apothem-0.1.0/src/apothem/audit/scan_drift_features.py +146 -0
- apothem-0.1.0/src/apothem/audit/scan_frontmatter.py +297 -0
- apothem-0.1.0/src/apothem/audit/scan_header_coverage.py +1232 -0
- apothem-0.1.0/src/apothem/audit/scan_plan_leakage.py +534 -0
- apothem-0.1.0/src/apothem/audit/scan_plans_discipline.py +186 -0
- apothem-0.1.0/src/apothem/audit/scan_secrets_pii.py +249 -0
- apothem-0.1.0/src/apothem/audit/scan_stale_tokens.py +300 -0
- apothem-0.1.0/src/apothem/audit/synthesize_drift.py +210 -0
- apothem-0.1.0/src/apothem/benchmarks/__init__.py +8 -0
- apothem-0.1.0/src/apothem/benchmarks/bench_agents.py +68 -0
- apothem-0.1.0/src/apothem/benchmarks/bench_hooks.py +80 -0
- apothem-0.1.0/src/apothem/benchmarks/bench_tests.py +65 -0
- apothem-0.1.0/src/apothem/benchmarks/bench_validate_ecosystem.py +65 -0
- apothem-0.1.0/src/apothem/cli/__init__.py +1023 -0
- apothem-0.1.0/src/apothem/cli/_common_flags.py +84 -0
- apothem-0.1.0/src/apothem/cli/_json_formatter.py +25 -0
- apothem-0.1.0/src/apothem/cli/_propagation.py +128 -0
- apothem-0.1.0/src/apothem/cli/propagation-manifest.yaml +138 -0
- apothem-0.1.0/src/apothem/commands/README.md +61 -0
- apothem-0.1.0/src/apothem/commands/a11y-audit.md +242 -0
- apothem-0.1.0/src/apothem/commands/architecture-review.md +229 -0
- apothem-0.1.0/src/apothem/commands/code-audit.md +253 -0
- apothem-0.1.0/src/apothem/commands/code-review.md +229 -0
- apothem-0.1.0/src/apothem/commands/dependency-audit.md +239 -0
- apothem-0.1.0/src/apothem/commands/docs-review.md +226 -0
- apothem-0.1.0/src/apothem/commands/perf-audit.md +235 -0
- apothem-0.1.0/src/apothem/commands/plan-design.md +244 -0
- apothem-0.1.0/src/apothem/commands/plan-execute.md +484 -0
- apothem-0.1.0/src/apothem/commands/plan-generate.md +337 -0
- apothem-0.1.0/src/apothem/commands/plan-review.md +477 -0
- apothem-0.1.0/src/apothem/commands/plan-spec.md +357 -0
- apothem-0.1.0/src/apothem/commands/plan-status.md +230 -0
- apothem-0.1.0/src/apothem/commands/security-audit.md +217 -0
- apothem-0.1.0/src/apothem/commands/supply-chain-audit.md +231 -0
- apothem-0.1.0/src/apothem/commands/threat-model-audit.md +243 -0
- apothem-0.1.0/src/apothem/commands/ux-review.md +230 -0
- apothem-0.1.0/src/apothem/conformity/__init__.py +0 -0
- apothem-0.1.0/src/apothem/conformity/always_on_budget_grep.py +327 -0
- apothem-0.1.0/src/apothem/conformity/bare_except_grep.py +132 -0
- apothem-0.1.0/src/apothem/conformity/binding_reciprocity_grep.py +166 -0
- apothem-0.1.0/src/apothem/conformity/brand_mark_grep.py +317 -0
- apothem-0.1.0/src/apothem/conformity/commented_out_code_grep.py +211 -0
- apothem-0.1.0/src/apothem/conformity/copilot_instructions_presence_grep.py +307 -0
- apothem-0.1.0/src/apothem/conformity/diagram_staleness_grep.py +189 -0
- apothem-0.1.0/src/apothem/conformity/file_header_grep.py +487 -0
- apothem-0.1.0/src/apothem/conformity/frontmatter_grep.py +271 -0
- apothem-0.1.0/src/apothem/conformity/gate.py +592 -0
- apothem-0.1.0/src/apothem/conformity/hedging_grep.py +151 -0
- apothem-0.1.0/src/apothem/conformity/license_author_consistency_grep.py +319 -0
- apothem-0.1.0/src/apothem/conformity/link_check.py +179 -0
- apothem-0.1.0/src/apothem/conformity/magic_number_grep.py +215 -0
- apothem-0.1.0/src/apothem/conformity/multi_surface_coherence_grep.py +636 -0
- apothem-0.1.0/src/apothem/conformity/naming_grep.py +227 -0
- apothem-0.1.0/src/apothem/conformity/no_global_plans_grep.py +161 -0
- apothem-0.1.0/src/apothem/conformity/option_annotation_grep.py +169 -0
- apothem-0.1.0/src/apothem/conformity/orphan_output_grep.py +224 -0
- apothem-0.1.0/src/apothem/conformity/plans_discipline_language_grep.py +235 -0
- apothem-0.1.0/src/apothem/conformity/production_ready_pr_grep.py +204 -0
- apothem-0.1.0/src/apothem/conformity/secret_leak_grep.py +198 -0
- apothem-0.1.0/src/apothem/conformity/secret_scan_grep.py +147 -0
- apothem-0.1.0/src/apothem/conformity/smoke_install_grep.py +199 -0
- apothem-0.1.0/src/apothem/conformity/unpinned_action_grep.py +150 -0
- apothem-0.1.0/src/apothem/conformity/user_confirm_grep.py +114 -0
- apothem-0.1.0/src/apothem/docgen/render_llms_full.py +100 -0
- apothem-0.1.0/src/apothem/docgen/render_reference.py +203 -0
- apothem-0.1.0/src/apothem/harnesses/__init__.py +59 -0
- apothem-0.1.0/src/apothem/harnesses/antigravity/__init__.py +68 -0
- apothem-0.1.0/src/apothem/harnesses/antigravity/install.py +26 -0
- apothem-0.1.0/src/apothem/harnesses/antigravity/materializer.py +39 -0
- apothem-0.1.0/src/apothem/harnesses/antigravity/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/antigravity/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/antigravity/verify.py +18 -0
- apothem-0.1.0/src/apothem/harnesses/claude_code/__init__.py +76 -0
- apothem-0.1.0/src/apothem/harnesses/claude_code/install.py +204 -0
- apothem-0.1.0/src/apothem/harnesses/claude_code/templates/settings-unix.json +192 -0
- apothem-0.1.0/src/apothem/harnesses/claude_code/templates/settings.json +192 -0
- apothem-0.1.0/src/apothem/harnesses/claude_code/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/claude_code/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/claude_code/verify.py +18 -0
- apothem-0.1.0/src/apothem/harnesses/codex/__init__.py +57 -0
- apothem-0.1.0/src/apothem/harnesses/codex/install.py +26 -0
- apothem-0.1.0/src/apothem/harnesses/codex/materializer.py +31 -0
- apothem-0.1.0/src/apothem/harnesses/codex/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/codex/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/codex/verify.py +18 -0
- apothem-0.1.0/src/apothem/harnesses/cursor/__init__.py +70 -0
- apothem-0.1.0/src/apothem/harnesses/cursor/install.py +26 -0
- apothem-0.1.0/src/apothem/harnesses/cursor/materializer.py +31 -0
- apothem-0.1.0/src/apothem/harnesses/cursor/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/cursor/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/cursor/verify.py +18 -0
- apothem-0.1.0/src/apothem/harnesses/gemini_cli/__init__.py +57 -0
- apothem-0.1.0/src/apothem/harnesses/gemini_cli/install.py +26 -0
- apothem-0.1.0/src/apothem/harnesses/gemini_cli/materializer.py +32 -0
- apothem-0.1.0/src/apothem/harnesses/gemini_cli/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/gemini_cli/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/gemini_cli/verify.py +18 -0
- apothem-0.1.0/src/apothem/harnesses/github_copilot/__init__.py +60 -0
- apothem-0.1.0/src/apothem/harnesses/github_copilot/install.py +26 -0
- apothem-0.1.0/src/apothem/harnesses/github_copilot/materializer.py +31 -0
- apothem-0.1.0/src/apothem/harnesses/github_copilot/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/github_copilot/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/github_copilot/verify.py +18 -0
- apothem-0.1.0/src/apothem/harnesses/hermes/__init__.py +59 -0
- apothem-0.1.0/src/apothem/harnesses/hermes/install.py +26 -0
- apothem-0.1.0/src/apothem/harnesses/hermes/materializer.py +22 -0
- apothem-0.1.0/src/apothem/harnesses/hermes/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/hermes/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/hermes/verify.py +18 -0
- apothem-0.1.0/src/apothem/harnesses/open_claw/__init__.py +60 -0
- apothem-0.1.0/src/apothem/harnesses/open_claw/install.py +26 -0
- apothem-0.1.0/src/apothem/harnesses/open_claw/materializer.py +46 -0
- apothem-0.1.0/src/apothem/harnesses/open_claw/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/open_claw/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/open_claw/verify.py +18 -0
- apothem-0.1.0/src/apothem/harnesses/opencode/__init__.py +57 -0
- apothem-0.1.0/src/apothem/harnesses/opencode/install.py +26 -0
- apothem-0.1.0/src/apothem/harnesses/opencode/materializer.py +38 -0
- apothem-0.1.0/src/apothem/harnesses/opencode/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/opencode/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/opencode/verify.py +18 -0
- apothem-0.1.0/src/apothem/harnesses/qwen_code/__init__.py +57 -0
- apothem-0.1.0/src/apothem/harnesses/qwen_code/install.py +26 -0
- apothem-0.1.0/src/apothem/harnesses/qwen_code/materializer.py +31 -0
- apothem-0.1.0/src/apothem/harnesses/qwen_code/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/qwen_code/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/qwen_code/verify.py +18 -0
- apothem-0.1.0/src/apothem/harnesses/windsurf/__init__.py +59 -0
- apothem-0.1.0/src/apothem/harnesses/windsurf/install.py +26 -0
- apothem-0.1.0/src/apothem/harnesses/windsurf/materializer.py +31 -0
- apothem-0.1.0/src/apothem/harnesses/windsurf/uninstall.py +20 -0
- apothem-0.1.0/src/apothem/harnesses/windsurf/update.py +24 -0
- apothem-0.1.0/src/apothem/harnesses/windsurf/verify.py +18 -0
- apothem-0.1.0/src/apothem/hooks/__init__.py +26 -0
- apothem-0.1.0/src/apothem/hooks/dispatch.py +174 -0
- apothem-0.1.0/src/apothem/hooks/emit_hook_context.py +298 -0
- apothem-0.1.0/src/apothem/hooks/lib/__init__.py +23 -0
- apothem-0.1.0/src/apothem/hooks/lib/bootstrap.ps1 +120 -0
- apothem-0.1.0/src/apothem/hooks/lib/bootstrap.sh +105 -0
- apothem-0.1.0/src/apothem/hooks/lib/events.py +56 -0
- apothem-0.1.0/src/apothem/hooks/lib/find-pwsh.ps1 +83 -0
- apothem-0.1.0/src/apothem/hooks/lib/find-pwsh.sh +81 -0
- apothem-0.1.0/src/apothem/hooks/lib/find-python.ps1 +58 -0
- apothem-0.1.0/src/apothem/hooks/lib/find-python.sh +50 -0
- apothem-0.1.0/src/apothem/hooks/lib/log.py +48 -0
- apothem-0.1.0/src/apothem/hooks/lib/resolve_root.py +206 -0
- apothem-0.1.0/src/apothem/hooks/messages/postcompact.md +12 -0
- apothem-0.1.0/src/apothem/hooks/messages/precompact.md +12 -0
- apothem-0.1.0/src/apothem/hooks/messages/pretooluse-bash-plan-guard.md +121 -0
- apothem-0.1.0/src/apothem/hooks/messages/pretooluse-bash.md +37 -0
- apothem-0.1.0/src/apothem/hooks/messages/pretooluse-conformity.md +41 -0
- apothem-0.1.0/src/apothem/hooks/messages/pretooluse-edit-header-guard.md +93 -0
- apothem-0.1.0/src/apothem/hooks/messages/pretooluse-edit.md +21 -0
- apothem-0.1.0/src/apothem/hooks/messages/pretooluse-notebookedit.md +9 -0
- apothem-0.1.0/src/apothem/hooks/messages/pretooluse-write-header-guard.md +76 -0
- apothem-0.1.0/src/apothem/hooks/messages/pretooluse-write-plan-guard.md +116 -0
- apothem-0.1.0/src/apothem/hooks/messages/pretooluse-write.md +21 -0
- apothem-0.1.0/src/apothem/hooks/messages/sessionstart.md +13 -0
- apothem-0.1.0/src/apothem/hooks/messages/stop.md +23 -0
- apothem-0.1.0/src/apothem/hooks/session_start_bootstrap.py +425 -0
- apothem-0.1.0/src/apothem/lib/__init__.py +13 -0
- apothem-0.1.0/src/apothem/lib/frontmatter.py +100 -0
- apothem-0.1.0/src/apothem/lib/harness_materializer.py +98 -0
- apothem-0.1.0/src/apothem/lib/parallel_sweep.py +228 -0
- apothem-0.1.0/src/apothem/lib/reporter.py +59 -0
- apothem-0.1.0/src/apothem/output-styles/README.md +42 -0
- apothem-0.1.0/src/apothem/output-styles/concise-engineer.md +56 -0
- apothem-0.1.0/src/apothem/output-styles/default-architect.md +59 -0
- apothem-0.1.0/src/apothem/output-styles/default.md +120 -0
- apothem-0.1.0/src/apothem/output-styles/forensic-auditor.md +70 -0
- apothem-0.1.0/src/apothem/rules/README.md +96 -0
- apothem-0.1.0/src/apothem/rules/agent-orchestration-patterns.md +181 -0
- apothem-0.1.0/src/apothem/rules/agent-orchestration.md +70 -0
- apothem-0.1.0/src/apothem/rules/agile-sprints-elements.md +142 -0
- apothem-0.1.0/src/apothem/rules/agile-sprints.md +71 -0
- apothem-0.1.0/src/apothem/rules/authority-inquiry-categories.md +65 -0
- apothem-0.1.0/src/apothem/rules/authority-inquiry.md +61 -0
- apothem-0.1.0/src/apothem/rules/auto-memory-topic-files.md +93 -0
- apothem-0.1.0/src/apothem/rules/auto-memory.md +72 -0
- apothem-0.1.0/src/apothem/rules/bidirectional-binding.md +130 -0
- apothem-0.1.0/src/apothem/rules/canonical-layout-reporting-tiers.md +182 -0
- apothem-0.1.0/src/apothem/rules/canonical-layout.md +61 -0
- apothem-0.1.0/src/apothem/rules/clean-architecture-layers.md +193 -0
- apothem-0.1.0/src/apothem/rules/clean-room-generation-protocols.md +131 -0
- apothem-0.1.0/src/apothem/rules/clean-room-generation.md +61 -0
- apothem-0.1.0/src/apothem/rules/code-craft-conventions.md +108 -0
- apothem-0.1.0/src/apothem/rules/code-craft-markdown.md +141 -0
- apothem-0.1.0/src/apothem/rules/code-craft-python.md +161 -0
- apothem-0.1.0/src/apothem/rules/code-craft-shell.md +199 -0
- apothem-0.1.0/src/apothem/rules/cognitive-identity-techniques.md +187 -0
- apothem-0.1.0/src/apothem/rules/cognitive-identity.md +88 -0
- apothem-0.1.0/src/apothem/rules/context-management-protocol.md +142 -0
- apothem-0.1.0/src/apothem/rules/context-management-scratch.md +109 -0
- apothem-0.1.0/src/apothem/rules/context-management.md +89 -0
- apothem-0.1.0/src/apothem/rules/definitiveness-virtues.md +74 -0
- apothem-0.1.0/src/apothem/rules/definitiveness.md +65 -0
- apothem-0.1.0/src/apothem/rules/disclosure-ledger-markers.md +59 -0
- apothem-0.1.0/src/apothem/rules/disclosure-ledger.md +59 -0
- apothem-0.1.0/src/apothem/rules/expertise-posture-elements.md +75 -0
- apothem-0.1.0/src/apothem/rules/expertise-posture.md +55 -0
- apothem-0.1.0/src/apothem/rules/host-discovery-manifests.md +57 -0
- apothem-0.1.0/src/apothem/rules/host-discovery.md +63 -0
- apothem-0.1.0/src/apothem/rules/interactive-questions-canonical-shapes.md +449 -0
- apothem-0.1.0/src/apothem/rules/interactive-questions-sweep-matchers.md +190 -0
- apothem-0.1.0/src/apothem/rules/interactive-questions.md +101 -0
- apothem-0.1.0/src/apothem/rules/large-file-generation.md +147 -0
- apothem-0.1.0/src/apothem/rules/operational-mandates-expanded.md +105 -0
- apothem-0.1.0/src/apothem/rules/operational-mandates.md +95 -0
- apothem-0.1.0/src/apothem/rules/option-annotation-form.md +67 -0
- apothem-0.1.0/src/apothem/rules/option-annotation.md +52 -0
- apothem-0.1.0/src/apothem/rules/performance-discipline.md +135 -0
- apothem-0.1.0/src/apothem/rules/persistent-conventions-vigilance-checklist.md +61 -0
- apothem-0.1.0/src/apothem/rules/persistent-conventions-vigilance.md +68 -0
- apothem-0.1.0/src/apothem/rules/planning-techniques.md +128 -0
- apothem-0.1.0/src/apothem/rules/pre-emission-gate-bars.md +93 -0
- apothem-0.1.0/src/apothem/rules/pre-emission-gate.md +61 -0
- apothem-0.1.0/src/apothem/rules/production-ready-prs-surfaces.md +143 -0
- apothem-0.1.0/src/apothem/rules/production-ready-prs.md +90 -0
- apothem-0.1.0/src/apothem/rules/systemic-participation-relations.md +115 -0
- apothem-0.1.0/src/apothem/rules/systemic-participation.md +77 -0
- apothem-0.1.0/src/apothem/rules/ten-dimension-check-dimensions.md +59 -0
- apothem-0.1.0/src/apothem/rules/ten-dimension-check.md +66 -0
- apothem-0.1.0/src/apothem/rules/token-budget-discipline.md +88 -0
- apothem-0.1.0/src/apothem/rules/visual-leverage.md +109 -0
- apothem-0.1.0/src/apothem/schemas/NOTICE.md +24 -0
- apothem-0.1.0/src/apothem/schemas/README.md +54 -0
- apothem-0.1.0/src/apothem/schemas/__init__.py +146 -0
- apothem-0.1.0/src/apothem/schemas/agent.schema.json +106 -0
- apothem-0.1.0/src/apothem/schemas/authorship-header.txt +6 -0
- apothem-0.1.0/src/apothem/schemas/command.schema.json +51 -0
- apothem-0.1.0/src/apothem/schemas/compatibility-matrix.yaml +271 -0
- apothem-0.1.0/src/apothem/schemas/handoff-manifest.yaml +276 -0
- apothem-0.1.0/src/apothem/schemas/header-exceptions.txt +132 -0
- apothem-0.1.0/src/apothem/schemas/header-visibility.yaml +44 -0
- apothem-0.1.0/src/apothem/schemas/output-style.schema.json +41 -0
- apothem-0.1.0/src/apothem/schemas/plan.schema.json +51 -0
- apothem-0.1.0/src/apothem/schemas/profile.example.yaml +37 -0
- apothem-0.1.0/src/apothem/schemas/profile.schema.json +101 -0
- apothem-0.1.0/src/apothem/schemas/skill.schema.json +52 -0
- apothem-0.1.0/src/apothem/skills/README.md +43 -0
- apothem-0.1.0/src/apothem/skills/ecosystem-audit/SKILL.md +185 -0
- apothem-0.1.0/src/apothem/skills/plan-suite/SKILL.md +99 -0
- apothem-0.1.0/src/apothem/skills/plan-suite/master_template.md +1331 -0
- apothem-0.1.0/src/apothem/statuslines/README.md +26 -0
- apothem-0.1.0/src/apothem/statuslines/__init__.py +26 -0
- apothem-0.1.0/src/apothem/statuslines/conformity.json +5 -0
- apothem-0.1.0/src/apothem/statuslines/render.py +261 -0
- apothem-0.1.0/src/apothem/statuslines/statusline.md +53 -0
- apothem-0.1.0/src/apothem/statuslines/statusline.ps1 +137 -0
- apothem-0.1.0/src/apothem/statuslines/statusline.sh +143 -0
- apothem-0.1.0/src/apothem/templates/README.md +37 -0
- apothem-0.1.0/src/apothem/templates/consideration-log.md +46 -0
- apothem-0.1.0/src/apothem/templates/expertise-gap-log.md +63 -0
- apothem-0.1.0/src/apothem/templates/master-index-template.md +100 -0
- apothem-0.1.0/src/apothem/templates/potency-map.md +60 -0
- apothem-0.1.0/src/apothem/templates/preservation-audit.md +67 -0
- apothem-0.1.0/src/apothem/templates/question-resolution-audit.md +59 -0
- apothem-0.1.0/src/apothem/templates/trace-matrix-template.md +84 -0
- apothem-0.1.0/src/apothem.egg-info/PKG-INFO +845 -0
- apothem-0.1.0/src/apothem.egg-info/SOURCES.txt +287 -0
- apothem-0.1.0/src/apothem.egg-info/dependency_links.txt +1 -0
- apothem-0.1.0/src/apothem.egg-info/entry_points.txt +17 -0
- apothem-0.1.0/src/apothem.egg-info/requires.txt +37 -0
- apothem-0.1.0/src/apothem.egg-info/top_level.txt +1 -0
apothem-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Ahmed G. Gad
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) <year> <copyright holders>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
6
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
7
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
9
|
+
following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
12
|
+
portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
15
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
16
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
17
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
18
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|