rdf-construct 0.2.0__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.
Files changed (87) hide show
  1. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/PKG-INFO +3 -1
  2. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/README.md +2 -0
  3. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/pyproject.toml +1 -1
  4. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/__init__.py +1 -1
  5. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/LICENSE +0 -0
  6. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/__main__.py +0 -0
  7. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/cli.py +0 -0
  8. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/core/__init__.py +0 -0
  9. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/core/config.py +0 -0
  10. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/core/ordering.py +0 -0
  11. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/core/predicate_order.py +0 -0
  12. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/core/profile.py +0 -0
  13. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/core/selector.py +0 -0
  14. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/core/serialiser.py +0 -0
  15. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/core/utils.py +0 -0
  16. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/cq/__init__.py +0 -0
  17. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/cq/expectations.py +0 -0
  18. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/cq/formatters/__init__.py +0 -0
  19. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/cq/formatters/json.py +0 -0
  20. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/cq/formatters/junit.py +0 -0
  21. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/cq/formatters/text.py +0 -0
  22. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/cq/loader.py +0 -0
  23. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/cq/runner.py +0 -0
  24. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/diff/__init__.py +0 -0
  25. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/diff/change_types.py +0 -0
  26. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/diff/comparator.py +0 -0
  27. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/diff/filters.py +0 -0
  28. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/diff/formatters/__init__.py +0 -0
  29. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/diff/formatters/json.py +0 -0
  30. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/diff/formatters/markdown.py +0 -0
  31. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/diff/formatters/text.py +0 -0
  32. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/__init__.py +0 -0
  33. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/config.py +0 -0
  34. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/extractors.py +0 -0
  35. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/generator.py +0 -0
  36. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/renderers/__init__.py +0 -0
  37. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/renderers/html.py +0 -0
  38. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/renderers/json.py +0 -0
  39. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/renderers/markdown.py +0 -0
  40. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/search.py +0 -0
  41. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/templates/html/base.html.jinja +0 -0
  42. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/templates/html/class.html.jinja +0 -0
  43. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/templates/html/hierarchy.html.jinja +0 -0
  44. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/templates/html/index.html.jinja +0 -0
  45. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/templates/html/instance.html.jinja +0 -0
  46. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/templates/html/namespaces.html.jinja +0 -0
  47. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/templates/html/property.html.jinja +0 -0
  48. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/docs/templates/html/single_page.html.jinja +0 -0
  49. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/lint/__init__.py +0 -0
  50. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/lint/config.py +0 -0
  51. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/lint/engine.py +0 -0
  52. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/lint/formatters.py +0 -0
  53. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/lint/rules.py +0 -0
  54. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/main.py +0 -0
  55. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/puml2rdf/__init__.py +0 -0
  56. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/puml2rdf/config.py +0 -0
  57. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/puml2rdf/converter.py +0 -0
  58. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/puml2rdf/merger.py +0 -0
  59. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/puml2rdf/model.py +0 -0
  60. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/puml2rdf/parser.py +0 -0
  61. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/puml2rdf/validators.py +0 -0
  62. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/shacl/__init__.py +0 -0
  63. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/shacl/config.py +0 -0
  64. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/shacl/converters.py +0 -0
  65. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/shacl/generator.py +0 -0
  66. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/shacl/namespaces.py +0 -0
  67. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/__init__.py +0 -0
  68. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/collector.py +0 -0
  69. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/comparator.py +0 -0
  70. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/formatters/__init__.py +0 -0
  71. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/formatters/json.py +0 -0
  72. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/formatters/markdown.py +0 -0
  73. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/formatters/text.py +0 -0
  74. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/metrics/__init__.py +0 -0
  75. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/metrics/basic.py +0 -0
  76. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/metrics/complexity.py +0 -0
  77. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/metrics/connectivity.py +0 -0
  78. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/metrics/documentation.py +0 -0
  79. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/metrics/hierarchy.py +0 -0
  80. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/stats/metrics/properties.py +0 -0
  81. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/uml/__init__.py +0 -0
  82. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/uml/context.py +0 -0
  83. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/uml/mapper.py +0 -0
  84. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/uml/odm_renderer.py +0 -0
  85. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/uml/renderer.py +0 -0
  86. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/uml/uml_layout.py +0 -0
  87. {rdf_construct-0.2.0 → rdf_construct-0.2.1}/src/rdf_construct/uml/uml_style.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rdf-construct
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Semantic RDF manipulation toolkit - order, serialize, and diff RDF ontologies
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE
@@ -44,6 +44,8 @@ Description-Content-Type: text/markdown
44
44
 
45
45
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
46
46
  [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
47
+ [![PyPI version](https://badge.fury.io/py/rdf-construct.svg)](https://pypi.org/project/rdf-construct/)
48
+ [![Downloads](https://pepy.tech/badge/rdf-construct)](https://pepy.tech/project/rdf-construct)
47
49
 
48
50
  ## Features
49
51
 
@@ -6,6 +6,8 @@
6
6
 
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
8
  [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
9
+ [![PyPI version](https://badge.fury.io/py/rdf-construct.svg)](https://pypi.org/project/rdf-construct/)
10
+ [![Downloads](https://pepy.tech/badge/rdf-construct)](https://pepy.tech/project/rdf-construct)
9
11
 
10
12
  ## Features
11
13
 
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [project]
6
6
  name = "rdf-construct"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Semantic RDF manipulation toolkit - order, serialize, and diff RDF ontologies"
9
9
  license = "MIT"
10
10
  readme = "README.md"
@@ -4,7 +4,7 @@ Named after the ROM construct from William Gibson's Neuromancer -
4
4
  preserved, structured knowledge that can be queried and transformed.
5
5
  """
6
6
 
7
- __version__ = "0.2.0"
7
+ __version__ = "0.2.1"
8
8
 
9
9
  from . import core, uml
10
10
  from .cli import cli
File without changes