pydzn 0.1.0__tar.gz → 0.1.2__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.
- {pydzn-0.1.0/src/pydzn.egg-info → pydzn-0.1.2}/PKG-INFO +2 -2
- {pydzn-0.1.0 → pydzn-0.1.2}/pyproject.toml +2 -6
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn/components/button/component.py +2 -1
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn/grid_builder.py +1 -1
- {pydzn-0.1.0 → pydzn-0.1.2/src/pydzn.egg-info}/PKG-INFO +2 -2
- {pydzn-0.1.0 → pydzn-0.1.2}/LICENSE +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/README.md +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/setup.cfg +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn/__init__.py +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn/base_component.py +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn/components/__init__.py +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn/components/button/__init__.py +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn/components/button/template.html +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn/dzn.py +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn.egg-info/SOURCES.txt +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn.egg-info/dependency_links.txt +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn.egg-info/requires.txt +0 -0
- {pydzn-0.1.0 → pydzn-0.1.2}/src/pydzn.egg-info/top_level.txt +0 -0
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pydzn
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: Tiny design-system utilities (Tailwind-like), composable HTML components, and a grid layout builder for Python/Jinja apps.
|
5
|
-
Author-email:
|
5
|
+
Author-email: Ryan Kirkish <ryan@foo.com>
|
6
6
|
License: Apache-2.0
|
7
7
|
Project-URL: Homepage, https://github.com/anthonyrka/pydzn
|
8
8
|
Project-URL: Repository, https://github.com/anthonyrka/pydzn
|
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "pydzn"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.2"
|
8
8
|
description = "Tiny design-system utilities (Tailwind-like), composable HTML components, and a grid layout builder for Python/Jinja apps."
|
9
9
|
readme = "README.md"
|
10
10
|
requires-python = ">=3.10"
|
11
11
|
license = { text = "Apache-2.0" }
|
12
12
|
authors = [
|
13
|
-
{ name = "
|
13
|
+
{ name = "Ryan Kirkish", email = "ryan@foo.com" }
|
14
14
|
]
|
15
15
|
keywords = ["design-system", "css", "utility-classes", "jinja2", "components", "grid", "htmx"]
|
16
16
|
classifiers = [
|
@@ -53,10 +53,8 @@ include-package-data = true
|
|
53
53
|
|
54
54
|
[tool.setuptools.packages.find]
|
55
55
|
where = ["src"]
|
56
|
-
# If your package is exactly "pydzn" at src/pydzn, this will find it (and subpackages).
|
57
56
|
|
58
57
|
[tool.setuptools.package-data]
|
59
|
-
# Ship component assets next to their modules so BaseComponent can find template.html/styles.css
|
60
58
|
pydzn = [
|
61
59
|
"**/*.html",
|
62
60
|
"**/*.css",
|
@@ -64,8 +62,6 @@ pydzn = [
|
|
64
62
|
"py.typed"
|
65
63
|
]
|
66
64
|
|
67
|
-
# --- Optional tooling config (nice defaults) ---
|
68
|
-
|
69
65
|
[tool.black]
|
70
66
|
target-version = ["py310"]
|
71
67
|
line-length = 100
|
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pydzn
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: Tiny design-system utilities (Tailwind-like), composable HTML components, and a grid layout builder for Python/Jinja apps.
|
5
|
-
Author-email:
|
5
|
+
Author-email: Ryan Kirkish <ryan@foo.com>
|
6
6
|
License: Apache-2.0
|
7
7
|
Project-URL: Homepage, https://github.com/anthonyrka/pydzn
|
8
8
|
Project-URL: Repository, https://github.com/anthonyrka/pydzn
|
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
|