pydzn 0.1.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pydzn
3
- Version: 0.1.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
5
  Author-email: Ryan Kirkish <ryan@foo.com>
6
6
  License: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pydzn"
7
- version = "0.1.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"
@@ -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,4 +1,5 @@
1
- from src.base_component import BaseComponent
1
+ from pydzn.base_component import BaseComponent
2
+
2
3
 
3
4
  class Button(BaseComponent):
4
5
  """
@@ -2,7 +2,7 @@ from __future__ import annotations
2
2
  from dataclasses import dataclass
3
3
  from typing import Dict, List, Optional, Union, Tuple
4
4
  import html
5
- from src.dzn import register_dzn_classes
5
+ from .dzn import register_dzn_classes
6
6
 
7
7
 
8
8
  CSSVal = Union[int, str]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pydzn
3
- Version: 0.1.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
5
  Author-email: Ryan Kirkish <ryan@foo.com>
6
6
  License: Apache-2.0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes