archunitpython 1.3.0__py3-none-any.whl → 1.5.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.
@@ -1,6 +1,6 @@
1
1
  """ArchUnitPython - Architecture testing library for Python projects."""
2
2
 
3
- __version__ = "1.3.0"
3
+ __version__ = "1.5.0"
4
4
 
5
5
  # Files API
6
6
  # Common
@@ -12,6 +12,7 @@ from archunitpython.common import (
12
12
  Violation,
13
13
  )
14
14
  from archunitpython.common.extraction import clear_graph_cache, extract_graph
15
+ from archunitpython.config import ConfiguredRule, rules_from_config
15
16
  from archunitpython.files import files, project_files
16
17
  from archunitpython.graph import dependency_graph, project_graph
17
18
  from archunitpython.layers import layers, project_layers
@@ -35,6 +36,9 @@ __all__ = [
35
36
  # Layers
36
37
  "project_layers",
37
38
  "layers",
39
+ # Config
40
+ "rules_from_config",
41
+ "ConfiguredRule",
38
42
  # Slices
39
43
  "project_slices",
40
44
  # Metrics
@@ -29,6 +29,8 @@ _DEFAULT_EXCLUDE = [
29
29
  "*.egg-info",
30
30
  ]
31
31
 
32
+ _ARCHIGNORE_FILE = ".archignore"
33
+
32
34
  _IGNORE_DIRECTIVE_REGEX = re.compile(
33
35
  r"#\s*archunit(?::|-)\s*ignore"
34
36
  r"(?:\([^)]*\))?"
@@ -88,9 +90,7 @@ def extract_graph(
88
90
  project_path = os.getcwd()
89
91
 
90
92
  project_path = os.path.abspath(project_path)
91
- excludes = (
92
- list(set(exclude_patterns)) if exclude_patterns is not None else list(_DEFAULT_EXCLUDE)
93
- )
93
+ excludes = _resolve_exclude_patterns(project_path, exclude_patterns)
94
94
  ignore_type_checking_imports = bool(options and options.ignore_type_checking_imports)
95
95
  cache_key = _build_cache_key(project_path, excludes, ignore_type_checking_imports)
96
96
 
@@ -122,6 +122,34 @@ def _build_cache_key(
122
122
  )
123
123
 
124
124
 
125
+ def _resolve_exclude_patterns(
126
+ project_path: str,
127
+ exclude_patterns: list[str] | None,
128
+ ) -> list[str]:
129
+ """Resolve exclude patterns (explicit or defaults) plus any .archignore patterns."""
130
+ excludes = list(exclude_patterns) if exclude_patterns is not None else list(_DEFAULT_EXCLUDE)
131
+ excludes.extend(_load_archignore_patterns(project_path))
132
+ return excludes
133
+
134
+
135
+ def _load_archignore_patterns(project_path: str) -> list[str]:
136
+ """Load .archignore patterns from a project root, if present."""
137
+ archignore_path = os.path.join(project_path, _ARCHIGNORE_FILE)
138
+ try:
139
+ with open(archignore_path, "r", encoding="utf-8", errors="replace") as f:
140
+ lines = f.readlines()
141
+ except OSError:
142
+ return []
143
+
144
+ patterns: list[str] = []
145
+ for line in lines:
146
+ pattern = line.strip()
147
+ if not pattern or pattern.startswith("#"):
148
+ continue
149
+ patterns.append(pattern)
150
+ return patterns
151
+
152
+
125
153
  def _extract_graph_uncached(
126
154
  project_path: str,
127
155
  exclude_patterns: list[str],
@@ -160,7 +188,7 @@ def _extract_graph_uncached(
160
188
  if resolved and resolved != _normalize(file_path):
161
189
  # Check if the resolved path is in our project
162
190
  if not is_external and resolved not in normalized_py_file_set:
163
- is_external = True
191
+ continue
164
192
 
165
193
  edges.append(
166
194
  Edge(
@@ -182,25 +210,65 @@ def _normalize(path: str) -> str:
182
210
  def _find_python_files(root: str, exclude: list[str]) -> list[str]:
183
211
  """Recursively find all .py files, excluding specified patterns."""
184
212
  py_files: list[str] = []
213
+ root = os.path.abspath(root)
185
214
  for dirpath, dirnames, filenames in os.walk(root):
186
215
  # Filter out excluded directories in-place
187
- dirnames[:] = [d for d in dirnames if not _should_exclude(d, exclude)]
216
+ dirnames[:] = [
217
+ d
218
+ for d in dirnames
219
+ if not _should_exclude_path(os.path.join(dirpath, d), root, exclude, is_dir=True)
220
+ ]
188
221
 
189
222
  for filename in filenames:
190
- if filename.endswith(".py") and not _should_exclude(filename, exclude):
191
- full_path = os.path.join(dirpath, filename)
223
+ full_path = os.path.join(dirpath, filename)
224
+ if filename.endswith(".py") and not _should_exclude_path(
225
+ full_path, root, exclude, is_dir=False
226
+ ):
192
227
  py_files.append(os.path.abspath(full_path))
193
228
 
194
229
  return py_files
195
230
 
196
231
 
197
- def _should_exclude(name: str, patterns: list[str]) -> bool:
198
- """Check if a name matches any exclude pattern."""
232
+ def _should_exclude_path(
233
+ path: str,
234
+ root: str,
235
+ patterns: list[str],
236
+ *,
237
+ is_dir: bool,
238
+ ) -> bool:
239
+ """Check if a path matches any exclude pattern."""
199
240
  import fnmatch
200
241
 
201
- for pattern in patterns:
202
- if fnmatch.fnmatch(name, pattern):
242
+ rel_path = _normalize(os.path.relpath(path, root))
243
+ name = os.path.basename(path)
244
+
245
+ for raw_pattern in patterns:
246
+ pattern = raw_pattern.strip().replace("\\", "/")
247
+ if not pattern or pattern.startswith("#"):
248
+ continue
249
+
250
+ pattern = pattern.removeprefix("./")
251
+ anchored = pattern.startswith("/")
252
+ if anchored:
253
+ pattern = pattern[1:]
254
+
255
+ dir_only = pattern.endswith("/")
256
+ if dir_only:
257
+ pattern = pattern.rstrip("/")
258
+ if not is_dir:
259
+ continue
260
+
261
+ if not pattern:
262
+ continue
263
+
264
+ if "/" in pattern or anchored:
265
+ if fnmatch.fnmatch(rel_path, pattern):
266
+ return True
267
+ if is_dir and rel_path == pattern:
268
+ return True
269
+ elif fnmatch.fnmatch(name, pattern):
203
270
  return True
271
+
204
272
  return False
205
273
 
206
274
 
@@ -0,0 +1,5 @@
1
+ """Configuration-file support for common architecture rules."""
2
+
3
+ from archunitpython.config.loader import ConfiguredRule, rules_from_config
4
+
5
+ __all__ = ["ConfiguredRule", "rules_from_config"]
@@ -0,0 +1,119 @@
1
+ """Load common architecture rules from a JSON configuration file."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import json
6
+ import os
7
+ from dataclasses import dataclass
8
+ from pathlib import Path
9
+ from typing import Any
10
+
11
+ from archunitpython.common.assertion.violation import Violation
12
+ from archunitpython.common.error.errors import UserError
13
+ from archunitpython.common.fluentapi.checkable import Checkable, CheckOptions
14
+ from archunitpython.files.fluentapi.files import project_files
15
+
16
+
17
+ @dataclass(frozen=True)
18
+ class ConfiguredRule:
19
+ """A named rule loaded from a configuration file."""
20
+
21
+ name: str
22
+ rule: Checkable
23
+
24
+ def check(self, options: CheckOptions | None = None) -> list[Violation]:
25
+ """Run the configured rule."""
26
+ return self.rule.check(options)
27
+
28
+
29
+ def rules_from_config(config_path: str) -> list[ConfiguredRule]:
30
+ """Load common architecture rules from a JSON config file.
31
+
32
+ The fluent Python API remains the primary interface. Config files provide a
33
+ lightweight way to share straightforward rules across projects or teams.
34
+ """
35
+ path = Path(config_path)
36
+ try:
37
+ raw_config = json.loads(path.read_text(encoding="utf-8"))
38
+ except OSError as exc:
39
+ raise UserError(f"Could not read config file: {config_path}") from exc
40
+ except json.JSONDecodeError as exc:
41
+ raise UserError(f"Invalid JSON config file: {config_path}") from exc
42
+
43
+ if not isinstance(raw_config, dict):
44
+ raise UserError("Architecture config must be a JSON object.")
45
+
46
+ project_path = _optional_string(raw_config, "project_path") or os.getcwd()
47
+ rules = raw_config.get("rules")
48
+ if not isinstance(rules, list):
49
+ raise UserError("Architecture config must define a 'rules' list.")
50
+
51
+ base_dir = str(path.parent if path.parent != Path("") else Path.cwd())
52
+ resolved_project_path = _resolve_project_path(base_dir, project_path)
53
+
54
+ return [_build_rule(resolved_project_path, item, index) for index, item in enumerate(rules, 1)]
55
+
56
+
57
+ def _build_rule(project_path: str, item: Any, index: int) -> ConfiguredRule:
58
+ if not isinstance(item, dict):
59
+ raise UserError(f"Rule #{index} must be a JSON object.")
60
+
61
+ rule_type = _required_string(item, "type", index)
62
+ name = _optional_string(item, "name") or f"{rule_type} rule #{index}"
63
+ rule: Checkable
64
+ if rule_type == "no_cycles":
65
+ subject = _optional_string(item, "subject")
66
+ builder = project_files(project_path)
67
+ if subject is not None:
68
+ rule = builder.in_path(subject).should().have_no_cycles()
69
+ else:
70
+ rule = builder.should().have_no_cycles()
71
+ elif rule_type == "forbidden_dependency":
72
+ source = _required_string(item, "source", index)
73
+ target = _required_string(item, "target", index)
74
+ rule = (
75
+ project_files(project_path)
76
+ .in_path(source)
77
+ .should_not()
78
+ .depend_on_files()
79
+ .in_path(target)
80
+ )
81
+ elif rule_type == "forbidden_external_dependency":
82
+ source = _required_string(item, "source", index)
83
+ module = _required_string(item, "module", index)
84
+ rule = (
85
+ project_files(project_path)
86
+ .in_path(source)
87
+ .should_not()
88
+ .depend_on_external_modules()
89
+ .matching(module)
90
+ )
91
+ else:
92
+ raise UserError(
93
+ f"Unsupported rule type '{rule_type}'. Supported types: "
94
+ "no_cycles, forbidden_dependency, forbidden_external_dependency."
95
+ )
96
+
97
+ return ConfiguredRule(name=name, rule=rule)
98
+
99
+
100
+ def _resolve_project_path(base_dir: str, project_path: str) -> str:
101
+ if os.path.isabs(project_path):
102
+ return project_path
103
+ return os.path.abspath(os.path.join(base_dir, project_path))
104
+
105
+
106
+ def _required_string(rule: dict[str, Any], key: str, index: int) -> str:
107
+ value = rule.get(key)
108
+ if not isinstance(value, str) or not value.strip():
109
+ raise UserError(f"Rule #{index} must define a non-empty string '{key}'.")
110
+ return value
111
+
112
+
113
+ def _optional_string(rule: dict[str, Any], key: str) -> str | None:
114
+ value = rule.get(key)
115
+ if value is None:
116
+ return None
117
+ if not isinstance(value, str) or not value.strip():
118
+ raise UserError(f"Config value '{key}' must be a non-empty string.")
119
+ return value
@@ -5,7 +5,10 @@ from __future__ import annotations
5
5
  import ast
6
6
  import os
7
7
 
8
- from archunitpython.common.extraction.extract_graph import _DEFAULT_EXCLUDE, _find_python_files
8
+ from archunitpython.common.extraction.extract_graph import (
9
+ _find_python_files,
10
+ _resolve_exclude_patterns,
11
+ )
9
12
  from archunitpython.metrics.common.types import (
10
13
  ClassInfo,
11
14
  EnhancedClassInfo,
@@ -33,7 +36,7 @@ def extract_class_info(
33
36
  project_path = os.getcwd()
34
37
 
35
38
  project_path = os.path.abspath(project_path)
36
- excludes = exclude_patterns if exclude_patterns is not None else _DEFAULT_EXCLUDE
39
+ excludes = _resolve_exclude_patterns(project_path, exclude_patterns)
37
40
  py_files = _find_python_files(project_path, excludes)
38
41
 
39
42
  classes: list[ClassInfo] = []
@@ -53,7 +56,7 @@ def extract_enhanced_class_info(
53
56
  project_path = os.getcwd()
54
57
 
55
58
  project_path = os.path.abspath(project_path)
56
- excludes = exclude_patterns if exclude_patterns is not None else _DEFAULT_EXCLUDE
59
+ excludes = _resolve_exclude_patterns(project_path, exclude_patterns)
57
60
  py_files = _find_python_files(project_path, excludes)
58
61
 
59
62
  results: list[FileAnalysisResult] = []
@@ -251,13 +251,13 @@ class FileMetricCondition(RuleRationaleMixin):
251
251
  import os
252
252
 
253
253
  from archunitpython.common.extraction.extract_graph import (
254
- _DEFAULT_EXCLUDE,
255
254
  _find_python_files,
255
+ _resolve_exclude_patterns,
256
256
  )
257
257
 
258
258
  project = self._project_path or os.getcwd()
259
259
  project = os.path.abspath(project)
260
- files = _find_python_files(project, _DEFAULT_EXCLUDE)
260
+ files = _find_python_files(project, _resolve_exclude_patterns(project, None))
261
261
  violations: list[Violation] = []
262
262
 
263
263
  for file_path in files:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: archunitpython
3
- Version: 1.3.0
3
+ Version: 1.5.0
4
4
  Summary: Architecture testing library for Python projects. Enforce dependency rules, detect cycles, validate metrics.
5
5
  Project-URL: Homepage, https://github.com/LukasNiessen/ArchUnitPython
6
6
  Project-URL: Repository, https://github.com/LukasNiessen/ArchUnitPython.git
@@ -188,6 +188,60 @@ options = CheckOptions(
188
188
  violations = rule.check(options)
189
189
  ```
190
190
 
191
+ ### Excluding Files With `.archignore`
192
+
193
+ Add a `.archignore` file to your project root to permanently exclude generated or
194
+ irrelevant files from architecture checks and file-based metrics:
195
+
196
+ ```gitignore
197
+ # Generated code
198
+ generated/
199
+
200
+ # Migration scripts
201
+ migrations/*.py
202
+
203
+ # A single root-level file
204
+ /legacy_adapter.py
205
+ ```
206
+
207
+ Patterns support comments, blank lines, glob syntax, root-relative paths, path
208
+ patterns, and directory patterns with a trailing `/`.
209
+
210
+ ### Loading Common Rules From Config
211
+
212
+ For straightforward shared rules, you can load a JSON config file and still run
213
+ the resulting rules in your normal test suite:
214
+
215
+ ```json
216
+ {
217
+ "project_path": "src",
218
+ "rules": [
219
+ {
220
+ "name": "controllers must not use services directly",
221
+ "type": "forbidden_dependency",
222
+ "source": "**/controllers/**",
223
+ "target": "**/services/**"
224
+ },
225
+ {
226
+ "name": "source files have no cycles",
227
+ "type": "no_cycles"
228
+ }
229
+ ]
230
+ }
231
+ ```
232
+
233
+ ```python
234
+ from archunitpython import assert_passes, rules_from_config
235
+
236
+ def test_configured_architecture_rules():
237
+ for rule in rules_from_config("archunitpython.json"):
238
+ assert_passes(rule)
239
+ ```
240
+
241
+ Supported rule types are `no_cycles`, `forbidden_dependency`, and
242
+ `forbidden_external_dependency`. The fluent Python API remains the primary and
243
+ most flexible interface.
244
+
191
245
  ### Explaining Rules With `.because(...)`
192
246
 
193
247
  Attach a rationale to a rule so failing assertions explain why the rule exists:
@@ -450,7 +504,7 @@ def test_no_forbidden_dependency():
450
504
 
451
505
  Generate dependency graph reports in multiple formats and narrow them to the part of the codebase you want to inspect.
452
506
 
453
- **Using `requests` library repo for example**
507
+ **Using [`requests`](https://github.com/psf/requests) library repo for example**
454
508
 
455
509
  ```python
456
510
  from archunitpython import project_graph
@@ -463,7 +517,7 @@ def test_export_dependency_graph_reports():
463
517
  if __name__ == "__main__":
464
518
  test_export_dependency_graph_reports()
465
519
  ```
466
- **Rendered mermain diagram**
520
+ **Exported mermaid diagram**
467
521
  ``` mermaid
468
522
  flowchart LR
469
523
  n0["__init__.py"]
@@ -1,4 +1,4 @@
1
- archunitpython/__init__.py,sha256=alLY-bGp-tUtdb8BRV0r8K-qIZKkWYnJ5K-mTDnFOrQ,1154
1
+ archunitpython/__init__.py,sha256=nXfB-DvtQN-2XR6XM87aM1E71BpqDbTBe-wJLLCgWEs,1282
2
2
  archunitpython/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  archunitpython/common/__init__.py,sha256=TKL39Z0kBpWqMH99jU4LsDSUZ5lQ_rcAJfLnmUTDTOI,656
4
4
  archunitpython/common/pattern_matching.py,sha256=HMAfo8GsooHvA4d2IxCi3btrYTdwfOQXw4bDNr117P0,2669
@@ -9,7 +9,7 @@ archunitpython/common/assertion/violation.py,sha256=TnMOykN3kPoGrSf1KcxBXYRfaxfX
9
9
  archunitpython/common/error/__init__.py,sha256=UWcdIKpGAJvo4WEGOVSaUjQQnKoPi8R496uDGXBWKsE,116
10
10
  archunitpython/common/error/errors.py,sha256=y7mcXoZPyK7uD2dMMO1qBt1y7KcIeGlRYiVeI6bjms4,249
11
11
  archunitpython/common/extraction/__init__.py,sha256=RkJOcxJoLYQxEagh3uWhjsUCprK3Nr3Bn3o7nmzk4_Q,284
12
- archunitpython/common/extraction/extract_graph.py,sha256=HIfAZLZiv4Zbi1Nm8jmNnnu8ggn0wQXunBlZP_QK1x8,15254
12
+ archunitpython/common/extraction/extract_graph.py,sha256=PcKInkTFLBxWO5RqppcGJKDii2LrTXgkxm7a0G16ZAg,17186
13
13
  archunitpython/common/extraction/graph.py,sha256=Rk-0eDDOLoHvScO27J2JzXjyMq3e5eKtrHnFBh5B6SU,1052
14
14
  archunitpython/common/fluentapi/__init__.py,sha256=LeS7qS2p9-FqqBhDL8xRPex__W5Qk0UWfcpl7nVVLfI,178
15
15
  archunitpython/common/fluentapi/checkable.py,sha256=BJFYibVhHLMFlnWdISPCIL3DYI1_3JN2-1jEQOaVaGE,1547
@@ -30,6 +30,8 @@ archunitpython/common/projection/cycles/tarjan_scc.py,sha256=pIj1ub8XgcqVLj8skdZ
30
30
  archunitpython/common/util/__init__.py,sha256=g-W8kWiVqwdohxm74J3yUonPkb_yDUJrp73S5s4jpgI,117
31
31
  archunitpython/common/util/declaration_detector.py,sha256=XgrpgaUIQa9MNFlnhVQz2X_uW7zCO9nrMbGa3tVFyPM,3407
32
32
  archunitpython/common/util/logger.py,sha256=2did2mRAlkrElH9SYgv9xYiSzr4A-jXHg3cp6TodhoA,3326
33
+ archunitpython/config/__init__.py,sha256=jl8qQ040ej2h7KOxzNx4Xtct89YKCDZA2kcdJ-RiNK0,191
34
+ archunitpython/config/loader.py,sha256=sXsq8X3rijBT2C_t5EEn1GC-22ZVxxLYcFU4Fuinkcc,4301
33
35
  archunitpython/files/__init__.py,sha256=wgl8IOqTeQGpNISu-Q8b_j6rTn8aEgoz6t1S5j8z13g,108
34
36
  archunitpython/files/assertion/__init__.py,sha256=K2qiEFfmo6SCgxfOKNrPzYgT5ScKUaw2W2CrDa3jBTw,1068
35
37
  archunitpython/files/assertion/custom_file_logic.py,sha256=1v5D80QX_NnAKBwKwyhetY4rA8rrXyxN2BsHlvnLgq8,2956
@@ -56,10 +58,10 @@ archunitpython/metrics/calculation/lcom.py,sha256=LK_kNT-BM6yuR5TUOLWQLkVvMpqR6q
56
58
  archunitpython/metrics/common/__init__.py,sha256=xtEyAhS4X0UbJXHxnpdiXljVZmKIKKekZAZ1zflSPFE,335
57
59
  archunitpython/metrics/common/types.py,sha256=w1BUlw6p_3K8qZDoQXv50P_CcKixGYiyS_YBGYILySA,1601
58
60
  archunitpython/metrics/extraction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
- archunitpython/metrics/extraction/extract_class_info.py,sha256=IFokUFwNaExmPtKnHW5hgnYWodRtBM3cWhXBGb7lcjs,7751
61
+ archunitpython/metrics/extraction/extract_class_info.py,sha256=u-i_AkRRdIbOVXhH7LVCCVIxRrz4IX6nOqukPxbB5Iw,7747
60
62
  archunitpython/metrics/fluentapi/__init__.py,sha256=HD72MWF0hCh2LzKfyk3mMJp2tf7TJebpwTtZ_kppjso,84
61
63
  archunitpython/metrics/fluentapi/export_utils.py,sha256=1r-zTQAUqn_agp4_lhbcffdzfdASNY3LebYvKAG9kcQ,2333
62
- archunitpython/metrics/fluentapi/metrics.py,sha256=EaH1seQKppXyx7DiPz1D-S1YYRt48OBWqdKn47BQhoA,19338
64
+ archunitpython/metrics/fluentapi/metrics.py,sha256=8OBOL3jVKbM9v_CjNNM9FMfV1JBfl5UEd1-PPOEScRs,19371
63
65
  archunitpython/metrics/projection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
66
  archunitpython/slices/__init__.py,sha256=tb8MoZiEqIdmWy7uyhmEtMNm5Fxjuw6atSvDsD131DE,96
65
67
  archunitpython/slices/assertion/__init__.py,sha256=MRwV3d69ljAJ7hFYdxI6UDNC8U4Dm1ImeuLUVKEC9To,280
@@ -77,7 +79,7 @@ archunitpython/testing/common/__init__.py,sha256=Wc4bC-N4t6giChKjj6wuTGKkb39thcY
77
79
  archunitpython/testing/common/color_utils.py,sha256=2I8Z1SZfWhhgudMgmXY6PPydGxGl35cK_To-GXnSyJg,1226
78
80
  archunitpython/testing/common/violation_factory.py,sha256=yWlvv2U7u-7KoTMfp1QCeJXxTLpPEagKqDHZmPSyrlk,4677
79
81
  archunitpython/testing/pytest_plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
- archunitpython-1.3.0.dist-info/METADATA,sha256=79jbCuDyAMQr3aY3A_fesygIwS8hF8ceYaPRzJvUmrU,30275
81
- archunitpython-1.3.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
82
- archunitpython-1.3.0.dist-info/licenses/LICENSE,sha256=kaQWfzfHk45CNIx4sIW7Uf1sNW5rmo6BpZ-R8GruuK0,1102
83
- archunitpython-1.3.0.dist-info/RECORD,,
82
+ archunitpython-1.5.0.dist-info/METADATA,sha256=ek9DQj2hd0a0h-tvws_nnelozR1PzhZNBLWouBBH0aM,31627
83
+ archunitpython-1.5.0.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
84
+ archunitpython-1.5.0.dist-info/licenses/LICENSE,sha256=kaQWfzfHk45CNIx4sIW7Uf1sNW5rmo6BpZ-R8GruuK0,1102
85
+ archunitpython-1.5.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.30.1
2
+ Generator: hatchling 1.31.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any