sumd 0.3.52__tar.gz → 0.3.53__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.
Files changed (66) hide show
  1. {sumd-0.3.52 → sumd-0.3.53}/CHANGELOG.md +12 -0
  2. {sumd-0.3.52 → sumd-0.3.53}/PKG-INFO +6 -6
  3. {sumd-0.3.52 → sumd-0.3.53}/README.md +4 -4
  4. {sumd-0.3.52 → sumd-0.3.53}/pyproject.toml +4 -2
  5. {sumd-0.3.52 → sumd-0.3.53}/sumd/__init__.py +1 -1
  6. {sumd-0.3.52 → sumd-0.3.53}/.gitignore +0 -0
  7. {sumd-0.3.52 → sumd-0.3.53}/LICENSE +0 -0
  8. {sumd-0.3.52 → sumd-0.3.53}/sumd/__main__.py +0 -0
  9. {sumd-0.3.52 → sumd-0.3.53}/sumd/cli.py +0 -0
  10. {sumd-0.3.52 → sumd-0.3.53}/sumd/cli_doql.py +0 -0
  11. {sumd-0.3.52 → sumd-0.3.53}/sumd/cli_scan.py +0 -0
  12. {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/__init__.py +0 -0
  13. {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/aggregates.py +0 -0
  14. {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/commands.py +0 -0
  15. {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/events.py +0 -0
  16. {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/queries.py +0 -0
  17. {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/sumd_aggregate.py +0 -0
  18. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/__init__.py +0 -0
  19. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/ast_nodes.py +0 -0
  20. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/commands.py +0 -0
  21. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/context_mixin.py +0 -0
  22. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/engine.py +0 -0
  23. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/lexer.py +0 -0
  24. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/nlp.py +0 -0
  25. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/parser.py +0 -0
  26. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/parser_base.py +0 -0
  27. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/parser_expr.py +0 -0
  28. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/parser_primary.py +0 -0
  29. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/schema.py +0 -0
  30. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/schema_commands.py +0 -0
  31. {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/shell.py +0 -0
  32. {sumd-0.3.52 → sumd-0.3.53}/sumd/extractor.py +0 -0
  33. {sumd-0.3.52 → sumd-0.3.53}/sumd/generator.py +0 -0
  34. {sumd-0.3.52 → sumd-0.3.53}/sumd/mcp_server.py +0 -0
  35. {sumd-0.3.52 → sumd-0.3.53}/sumd/models.py +0 -0
  36. {sumd-0.3.52 → sumd-0.3.53}/sumd/parser.py +0 -0
  37. {sumd-0.3.52 → sumd-0.3.53}/sumd/pipeline.py +0 -0
  38. {sumd-0.3.52 → sumd-0.3.53}/sumd/prolog_engine.py +0 -0
  39. {sumd-0.3.52 → sumd-0.3.53}/sumd/renderer.py +0 -0
  40. {sumd-0.3.52 → sumd-0.3.53}/sumd/rules.pl +0 -0
  41. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/__init__.py +0 -0
  42. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/api_stubs.py +0 -0
  43. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/architecture.py +0 -0
  44. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/base.py +0 -0
  45. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/call_graph.py +0 -0
  46. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/code_analysis.py +0 -0
  47. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/configuration.py +0 -0
  48. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/dependencies.py +0 -0
  49. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/deployment.py +0 -0
  50. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/environment.py +0 -0
  51. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/extras.py +0 -0
  52. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/interfaces.py +0 -0
  53. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/metadata.py +0 -0
  54. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/quality.py +0 -0
  55. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/refactor_analysis.py +0 -0
  56. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/source_snippets.py +0 -0
  57. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/swop.py +0 -0
  58. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/test_contracts.py +0 -0
  59. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/utils/__init__.py +0 -0
  60. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/utils/render.py +0 -0
  61. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/utils/should_render.py +0 -0
  62. {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/workflows.py +0 -0
  63. {sumd-0.3.52 → sumd-0.3.53}/sumd/toon_parser.py +0 -0
  64. {sumd-0.3.52 → sumd-0.3.53}/sumd/utils/__init__.py +0 -0
  65. {sumd-0.3.52 → sumd-0.3.53}/sumd/utils/prolog_core.py +0 -0
  66. {sumd-0.3.52 → sumd-0.3.53}/sumd/validator.py +0 -0
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.53] - 2026-05-22
11
+
12
+ ### Docs
13
+ - Update README.md
14
+
15
+ ### Test
16
+ - Update tests/test_cli.py
17
+
18
+ ### Other
19
+ - Update sumd_logic_validator/sumd_logic_validator/__init__.py
20
+ - Update wup.yaml
21
+
10
22
  ## [0.3.52] - 2026-05-22
11
23
 
12
24
  ### Docs
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sumd
3
- Version: 0.3.52
3
+ Version: 0.3.53
4
4
  Summary: SUMD - Structured Unified Markdown Descriptor for AI-aware project documentation
5
5
  Project-URL: Homepage, https://github.com/tom/statement
6
6
  Project-URL: Repository, https://github.com/tom/statement
7
7
  Author-email: Tom Sapletta <tom@sapletta.com>
8
- License-Expression: Apache-2.0
8
+ License: Apache-2.0
9
9
  License-File: LICENSE
10
10
  Keywords: documentation,llm,markdown,project-descriptor,sumd
11
11
  Classifier: Development Status :: 3 - Alpha
@@ -42,11 +42,11 @@ Description-Content-Type: text/markdown
42
42
 
43
43
  ## AI Cost Tracking
44
44
 
45
- ![PyPI](https://img.shields.io/badge/pypi-costs-blue) ![Version](https://img.shields.io/badge/version-0.3.52-blue) ![Python](https://img.shields.io/badge/python-3.9+-blue) ![License](https://img.shields.io/badge/license-Apache--2.0-green)
46
- ![AI Cost](https://img.shields.io/badge/AI%20Cost-$3.90-orange) ![Human Time](https://img.shields.io/badge/Human%20Time-35.8h-blue) ![Model](https://img.shields.io/badge/Model-openrouter%2Fqwen%2Fqwen3--coder--next-lightgrey)
45
+ ![PyPI](https://img.shields.io/badge/pypi-costs-blue) ![Version](https://img.shields.io/badge/version-0.3.53-blue) ![Python](https://img.shields.io/badge/python-3.9+-blue) ![License](https://img.shields.io/badge/license-Apache--2.0-green)
46
+ ![AI Cost](https://img.shields.io/badge/AI%20Cost-$7.50-orange) ![Human Time](https://img.shields.io/badge/Human%20Time-36.8h-blue) ![Model](https://img.shields.io/badge/Model-openrouter%2Fqwen%2Fqwen3--coder--next-lightgrey)
47
47
 
48
- - 🤖 **LLM usage:** $3.8976 (91 commits)
49
- - 👤 **Human dev:** ~$3584 (35.8h @ $100/h, 30min dedup)
48
+ - 🤖 **LLM usage:** $7.5000 (92 commits)
49
+ - 👤 **Human dev:** ~$3684 (36.8h @ $100/h, 30min dedup)
50
50
 
51
51
  Generated on 2026-05-22 using [openrouter/qwen/qwen3-coder-next](https://openrouter.ai/qwen/qwen3-coder-next)
52
52
 
@@ -2,11 +2,11 @@
2
2
 
3
3
  ## AI Cost Tracking
4
4
 
5
- ![PyPI](https://img.shields.io/badge/pypi-costs-blue) ![Version](https://img.shields.io/badge/version-0.3.52-blue) ![Python](https://img.shields.io/badge/python-3.9+-blue) ![License](https://img.shields.io/badge/license-Apache--2.0-green)
6
- ![AI Cost](https://img.shields.io/badge/AI%20Cost-$3.90-orange) ![Human Time](https://img.shields.io/badge/Human%20Time-35.8h-blue) ![Model](https://img.shields.io/badge/Model-openrouter%2Fqwen%2Fqwen3--coder--next-lightgrey)
5
+ ![PyPI](https://img.shields.io/badge/pypi-costs-blue) ![Version](https://img.shields.io/badge/version-0.3.53-blue) ![Python](https://img.shields.io/badge/python-3.9+-blue) ![License](https://img.shields.io/badge/license-Apache--2.0-green)
6
+ ![AI Cost](https://img.shields.io/badge/AI%20Cost-$7.50-orange) ![Human Time](https://img.shields.io/badge/Human%20Time-36.8h-blue) ![Model](https://img.shields.io/badge/Model-openrouter%2Fqwen%2Fqwen3--coder--next-lightgrey)
7
7
 
8
- - 🤖 **LLM usage:** $3.8976 (91 commits)
9
- - 👤 **Human dev:** ~$3584 (35.8h @ $100/h, 30min dedup)
8
+ - 🤖 **LLM usage:** $7.5000 (92 commits)
9
+ - 👤 **Human dev:** ~$3684 (36.8h @ $100/h, 30min dedup)
10
10
 
11
11
  Generated on 2026-05-22 using [openrouter/qwen/qwen3-coder-next](https://openrouter.ai/qwen/qwen3-coder-next)
12
12
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "sumd"
7
- version = "0.3.52"
7
+ version = "0.3.53"
8
8
  description = "SUMD - Structured Unified Markdown Descriptor for AI-aware project documentation"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -29,7 +29,9 @@ classifiers = [
29
29
  "Programming Language :: Python :: 3.11",
30
30
  "Programming Language :: Python :: 3.12",
31
31
  ]
32
- license = "Apache-2.0"
32
+
33
+ [project.license]
34
+ text = "Apache-2.0"
33
35
 
34
36
  [project.optional-dependencies]
35
37
  mcp = [
@@ -4,7 +4,7 @@ SUMD is a semantic project descriptor format in Markdown that defines intent,
4
4
  structure, execution entry points, and mental model of a system for both humans and LLMs.
5
5
  """
6
6
 
7
- __version__ = "0.3.52"
7
+ __version__ = "0.3.53"
8
8
 
9
9
  from sumd.models import SUMDDocument
10
10
  from sumd.parser import (
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