django-lucide 1.2.0__tar.gz → 1.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.
Files changed (19) hide show
  1. {django_lucide-1.2.0/src/django_lucide.egg-info → django_lucide-1.3.0}/PKG-INFO +23 -5
  2. {django_lucide-1.2.0 → django_lucide-1.3.0}/README.md +18 -1
  3. {django_lucide-1.2.0 → django_lucide-1.3.0}/pyproject.toml +5 -4
  4. {django_lucide-1.2.0 → django_lucide-1.3.0/src/django_lucide.egg-info}/PKG-INFO +23 -5
  5. {django_lucide-1.2.0 → django_lucide-1.3.0}/LICENSE +0 -0
  6. {django_lucide-1.2.0 → django_lucide-1.3.0}/MANIFEST.in +0 -0
  7. {django_lucide-1.2.0 → django_lucide-1.3.0}/setup.cfg +0 -0
  8. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/django_lucide.egg-info/SOURCES.txt +0 -0
  9. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/django_lucide.egg-info/dependency_links.txt +0 -0
  10. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/django_lucide.egg-info/requires.txt +0 -0
  11. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/django_lucide.egg-info/top_level.txt +0 -0
  12. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/lucide/__init__.py +0 -0
  13. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/lucide/_compat.py +0 -0
  14. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/lucide/aliases.json +0 -0
  15. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/lucide/jinja.py +0 -0
  16. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/lucide/lucide.zip +0 -0
  17. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/lucide/py.typed +0 -0
  18. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/lucide/templatetags/__init__.py +0 -0
  19. {django_lucide-1.2.0 → django_lucide-1.3.0}/src/lucide/templatetags/lucide.py +0 -0
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-lucide
3
- Version: 1.2.0
3
+ Version: 1.3.0
4
4
  Summary: Use lucide in your Django and Jinja templates.
5
5
  Author-email: Francisco Macedo <me@fmacedo.com>
6
6
  License: MIT
7
- Project-URL: Changelog, https://github.com/franciscobmacedo/lucide/blob/main/CHANGELOG.md
8
- Project-URL: Funding, https://ko-fi.com/fmacedo
9
- Project-URL: Repository, https://github.com/franciscobmacedo/lucide
7
+ Project-URL: Changelog, https://github.com/wilczynskiwm/lucide/blob/main/CHANGELOG.md
8
+ Project-URL: Repository, https://github.com/wilczynskiwm/lucide
10
9
  Keywords: Django
11
10
  Classifier: Development Status :: 5 - Production/Stable
12
11
  Classifier: Framework :: Django :: 3.2
@@ -24,6 +23,8 @@ Classifier: Programming Language :: Python :: 3.9
24
23
  Classifier: Programming Language :: Python :: 3.10
25
24
  Classifier: Programming Language :: Python :: 3.11
26
25
  Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
27
+ Classifier: Programming Language :: Python :: 3.14
27
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
28
29
  Classifier: Typing :: Typed
29
30
  Requires-Python: >=3.8
@@ -72,12 +73,29 @@ The `lucide` package supports both Django templates and Jinja templates.
72
73
  ]
73
74
  ```
74
75
 
75
- 2. Load the template library:
76
+ 2. Load the template library in your templates:
76
77
 
77
78
  ```django
78
79
  {% load lucide %}
79
80
  ```
80
81
 
82
+ **Or** make it available globally (no `{% load %}` needed):
83
+
84
+ ```python
85
+ TEMPLATES = [
86
+ {
87
+ "BACKEND": "django.template.backends.django.DjangoTemplates",
88
+ # ...
89
+ "OPTIONS": {
90
+ # ...
91
+ "builtins": [
92
+ "lucide.templatetags.lucide",
93
+ ],
94
+ },
95
+ }
96
+ ]
97
+ ```
98
+
81
99
  3. Use icons:
82
100
 
83
101
  ```django
@@ -35,12 +35,29 @@ The `lucide` package supports both Django templates and Jinja templates.
35
35
  ]
36
36
  ```
37
37
 
38
- 2. Load the template library:
38
+ 2. Load the template library in your templates:
39
39
 
40
40
  ```django
41
41
  {% load lucide %}
42
42
  ```
43
43
 
44
+ **Or** make it available globally (no `{% load %}` needed):
45
+
46
+ ```python
47
+ TEMPLATES = [
48
+ {
49
+ "BACKEND": "django.template.backends.django.DjangoTemplates",
50
+ # ...
51
+ "OPTIONS": {
52
+ # ...
53
+ "builtins": [
54
+ "lucide.templatetags.lucide",
55
+ ],
56
+ },
57
+ }
58
+ ]
59
+ ```
60
+
44
61
  3. Use icons:
45
62
 
46
63
  ```django
@@ -6,7 +6,7 @@ requires = [
6
6
 
7
7
  [project]
8
8
  name = "django-lucide"
9
- version = "1.2.0"
9
+ version = "1.3.0"
10
10
  description = "Use lucide in your Django and Jinja templates."
11
11
  readme = "README.md"
12
12
  keywords = [
@@ -34,6 +34,8 @@ classifiers = [
34
34
  "Programming Language :: Python :: 3.10",
35
35
  "Programming Language :: Python :: 3.11",
36
36
  "Programming Language :: Python :: 3.12",
37
+ "Programming Language :: Python :: 3.13",
38
+ "Programming Language :: Python :: 3.14",
37
39
  "Programming Language :: Python :: Implementation :: CPython",
38
40
  "Typing :: Typed",
39
41
  ]
@@ -44,9 +46,8 @@ optional-dependencies.django = [
44
46
  optional-dependencies.jinja = [
45
47
  "jinja2>=2.8",
46
48
  ]
47
- urls.Changelog = "https://github.com/franciscobmacedo/lucide/blob/main/CHANGELOG.md"
48
- urls.Funding = "https://ko-fi.com/fmacedo"
49
- urls.Repository = "https://github.com/franciscobmacedo/lucide"
49
+ urls.Changelog = "https://github.com/wilczynskiwm/lucide/blob/main/CHANGELOG.md"
50
+ urls.Repository = "https://github.com/wilczynskiwm/lucide"
50
51
 
51
52
  [tool.isort]
52
53
  add_imports = [
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-lucide
3
- Version: 1.2.0
3
+ Version: 1.3.0
4
4
  Summary: Use lucide in your Django and Jinja templates.
5
5
  Author-email: Francisco Macedo <me@fmacedo.com>
6
6
  License: MIT
7
- Project-URL: Changelog, https://github.com/franciscobmacedo/lucide/blob/main/CHANGELOG.md
8
- Project-URL: Funding, https://ko-fi.com/fmacedo
9
- Project-URL: Repository, https://github.com/franciscobmacedo/lucide
7
+ Project-URL: Changelog, https://github.com/wilczynskiwm/lucide/blob/main/CHANGELOG.md
8
+ Project-URL: Repository, https://github.com/wilczynskiwm/lucide
10
9
  Keywords: Django
11
10
  Classifier: Development Status :: 5 - Production/Stable
12
11
  Classifier: Framework :: Django :: 3.2
@@ -24,6 +23,8 @@ Classifier: Programming Language :: Python :: 3.9
24
23
  Classifier: Programming Language :: Python :: 3.10
25
24
  Classifier: Programming Language :: Python :: 3.11
26
25
  Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
27
+ Classifier: Programming Language :: Python :: 3.14
27
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
28
29
  Classifier: Typing :: Typed
29
30
  Requires-Python: >=3.8
@@ -72,12 +73,29 @@ The `lucide` package supports both Django templates and Jinja templates.
72
73
  ]
73
74
  ```
74
75
 
75
- 2. Load the template library:
76
+ 2. Load the template library in your templates:
76
77
 
77
78
  ```django
78
79
  {% load lucide %}
79
80
  ```
80
81
 
82
+ **Or** make it available globally (no `{% load %}` needed):
83
+
84
+ ```python
85
+ TEMPLATES = [
86
+ {
87
+ "BACKEND": "django.template.backends.django.DjangoTemplates",
88
+ # ...
89
+ "OPTIONS": {
90
+ # ...
91
+ "builtins": [
92
+ "lucide.templatetags.lucide",
93
+ ],
94
+ },
95
+ }
96
+ ]
97
+ ```
98
+
81
99
  3. Use icons:
82
100
 
83
101
  ```django
File without changes
File without changes
File without changes