zu-patterns 0.2.2__tar.gz → 0.3.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.
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/PKG-INFO +2 -2
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/pyproject.toml +2 -2
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/.gitignore +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/README.md +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/__init__.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/_match.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/autocomplete.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/cart_checkout.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/cookie_banner.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/login_form.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/modal_dialog.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/paginated_list.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/rail.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/recognizer.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/reversibility.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/search.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/search_box.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/src/zu_patterns/sortable_table.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/tests/test_mpc_and_shadow.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/tests/test_pattern_contract.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/tests/test_pattern_rail.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/tests/test_pattern_search.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/tests/test_recognizer.py +0 -0
- {zu_patterns-0.2.2 → zu_patterns-0.3.0}/tests/test_reversibility.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zu-patterns
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Zu pattern library: the policy-prior / move-ordering layer over the Action Surface (§5)
|
|
5
5
|
Project-URL: Homepage, https://github.com/k3-mt/zu
|
|
6
6
|
Project-URL: Repository, https://github.com/k3-mt/zu
|
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
14
14
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
15
15
|
Classifier: Typing :: Typed
|
|
16
16
|
Requires-Python: >=3.11
|
|
17
|
-
Requires-Dist: zu-core==0.
|
|
17
|
+
Requires-Dist: zu-core==0.3.0
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
|
|
20
20
|
# zu-patterns — the policy-prior / move-ordering layer (§5)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "zu-patterns"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
description = "Zu pattern library: the policy-prior / move-ordering layer over the Action Surface (§5)"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
@@ -18,7 +18,7 @@ classifiers = [
|
|
|
18
18
|
# The boundary holds: zu-patterns speaks ONLY the core SurfaceView — it depends
|
|
19
19
|
# on zu-core and NOT on zu-tools. A pattern recognizes over the core type; the
|
|
20
20
|
# zu-tools Surface → SurfaceView projection lives in zu-tools, one-way.
|
|
21
|
-
dependencies = ["zu-core==0.
|
|
21
|
+
dependencies = ["zu-core==0.3.0"]
|
|
22
22
|
|
|
23
23
|
[project.entry-points."zu.patterns"] # <- how a pattern is registered (§5)
|
|
24
24
|
cookie_banner = "zu_patterns.cookie_banner:CookieBanner"
|
|
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
|