django-settings-expose 0.1.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.
- django_settings_expose-0.1.0/.gitignore +12 -0
- django_settings_expose-0.1.0/.python-version +1 -0
- django_settings_expose-0.1.0/LICENSE +54 -0
- django_settings_expose-0.1.0/PKG-INFO +119 -0
- django_settings_expose-0.1.0/README.md +96 -0
- django_settings_expose-0.1.0/django_settings_expose/__init__.py +13 -0
- django_settings_expose-0.1.0/django_settings_expose/context_processors.py +62 -0
- django_settings_expose-0.1.0/pyproject.toml +31 -0
- django_settings_expose-0.1.0/uv.lock +72 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.9
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Vladimir Klimenko <v.klimenko.2137@gmail.com>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
========================================================================
|
|
24
|
+
Third-Party Code Components Included in this Product
|
|
25
|
+
========================================================================
|
|
26
|
+
|
|
27
|
+
This product includes code from the "django-settings-export" project, originally developed by Jakub Roztocil.
|
|
28
|
+
|
|
29
|
+
Copyright © 2014 Jakub Roztocil <jakub@subtleapps.com>
|
|
30
|
+
|
|
31
|
+
Redistribution and use in source and binary forms, with or without
|
|
32
|
+
modification, are permitted provided that the following conditions are met:
|
|
33
|
+
|
|
34
|
+
1. Redistributions of source code must retain the above copyright notice,
|
|
35
|
+
this list of conditions and the following disclaimer.
|
|
36
|
+
|
|
37
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
38
|
+
notice, this list of conditions and the following disclaimer in the
|
|
39
|
+
documentation and/or other materials provided with the distribution.
|
|
40
|
+
|
|
41
|
+
3. Neither the name of The author nor the names of its contributors may
|
|
42
|
+
be used to endorse or promote products derived from this software
|
|
43
|
+
without specific prior written permission.
|
|
44
|
+
|
|
45
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND
|
|
46
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
47
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
48
|
+
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR AND CONTRIBUTORS BE LIABLE FOR
|
|
49
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
50
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
51
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
52
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
53
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
54
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: django-settings-expose
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Fast, cached Django settings exporter to templates.
|
|
5
|
+
Author-email: Vladimir Klimenko <v.klimenko.2137@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Classifier: Framework :: Django
|
|
9
|
+
Classifier: Framework :: Django :: 3.2
|
|
10
|
+
Classifier: Framework :: Django :: 4.2
|
|
11
|
+
Classifier: Framework :: Django :: 5.2
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
20
|
+
Requires-Python: <=3.14,>=3.9
|
|
21
|
+
Requires-Dist: django<=5.2,>=3.2
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# django-settings-expose
|
|
25
|
+
|
|
26
|
+
A modern, high-performance, and cached Django context processor that safely exposes specific settings to your templates.
|
|
27
|
+
|
|
28
|
+
This is a heavily optimized drop-in replacement for the unmaintained `django-settings-export` package.
|
|
29
|
+
Unlike the original implementation, `django-settings-expose` caches your exposed settings in memory at server startup,
|
|
30
|
+
introducing **zero performance overhead** on later template renders.
|
|
31
|
+
|
|
32
|
+
## Features
|
|
33
|
+
|
|
34
|
+
- ⚡ **Zero-overhead:** Settings are read and cached once when the server boots.
|
|
35
|
+
- 🔒 **Secure:** Only whitelisted settings in `SETTINGS_EXPOSE` are exposed.
|
|
36
|
+
- 🛑 **Fail-fast:** Throws clear, descriptive errors during development if you typo a setting name or try to access an
|
|
37
|
+
unexposed variable in a template.
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Installation
|
|
42
|
+
|
|
43
|
+
Install the package directly from PyPI:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
pip install django-settings-expose
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Configuration
|
|
52
|
+
|
|
53
|
+
1. Add the context processor to your `settings.py` inside the `TEMPLATES` configuration:
|
|
54
|
+
|
|
55
|
+
```python
|
|
56
|
+
# settings.py
|
|
57
|
+
|
|
58
|
+
TEMPLATES = [
|
|
59
|
+
{
|
|
60
|
+
# ...
|
|
61
|
+
"OPTIONS": {
|
|
62
|
+
"context_processors": [
|
|
63
|
+
# ...
|
|
64
|
+
# Add this line:
|
|
65
|
+
"django_settings_expose.settings_expose",
|
|
66
|
+
],
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
]
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
2. Define the list of settings you want to expose to your templates using `SETTINGS_EXPOSE`:
|
|
73
|
+
|
|
74
|
+
```python
|
|
75
|
+
# settings.py
|
|
76
|
+
|
|
77
|
+
API_VERSION = "v1.2.6"
|
|
78
|
+
COMPANY_NAME = "My Awesome Company"
|
|
79
|
+
SECRET_KEY = "super-secret" # Keep this safe!
|
|
80
|
+
|
|
81
|
+
# Whitelist variables to be accessible in templates
|
|
82
|
+
SETTINGS_EXPOSE = [
|
|
83
|
+
"API_VERSION",
|
|
84
|
+
"COMPANY_NAME",
|
|
85
|
+
]
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## Usage in Templates
|
|
91
|
+
|
|
92
|
+
All exposed settings are made available via a globally accessible `{{ settings }}` dictionary variable:
|
|
93
|
+
|
|
94
|
+
```html
|
|
95
|
+
|
|
96
|
+
<footer>
|
|
97
|
+
<p>Copyright © 2026 {{ settings.COMPANY_NAME }}</p>
|
|
98
|
+
<p>API Version: {{ settings.API_VERSION }}</p>
|
|
99
|
+
</footer>
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### Error Handling
|
|
103
|
+
|
|
104
|
+
To protect you from typos and silent bugs, the library will raise explicit exceptions:
|
|
105
|
+
|
|
106
|
+
* If a variable listed in `SETTINGS_EXPOSE` is missing from `settings.py`, it throws an `UndefinedSettingError` on
|
|
107
|
+
startup.
|
|
108
|
+
* If a template attempts to access a variable that wasn't whitelisted (e.g., `{{ settings.SECRET_KEY }}`), it
|
|
109
|
+
throws an `UnexposedSettingError`.
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## License & Acknowledgements
|
|
114
|
+
|
|
115
|
+
This project is licensed under the **BSD 3-Clause License**.
|
|
116
|
+
|
|
117
|
+
It is based on the original concept of `django-settings-export` by `Jakub Roztocil <jakub@subtleapps.com>` (Copyright ©
|
|
118
|
+
2014).
|
|
119
|
+
Modified and optimized by `Vladimir Klimenko <v.klimenko.2137@gmail.com>` (Copyright © 2026).
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
# django-settings-expose
|
|
2
|
+
|
|
3
|
+
A modern, high-performance, and cached Django context processor that safely exposes specific settings to your templates.
|
|
4
|
+
|
|
5
|
+
This is a heavily optimized drop-in replacement for the unmaintained `django-settings-export` package.
|
|
6
|
+
Unlike the original implementation, `django-settings-expose` caches your exposed settings in memory at server startup,
|
|
7
|
+
introducing **zero performance overhead** on later template renders.
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- ⚡ **Zero-overhead:** Settings are read and cached once when the server boots.
|
|
12
|
+
- 🔒 **Secure:** Only whitelisted settings in `SETTINGS_EXPOSE` are exposed.
|
|
13
|
+
- 🛑 **Fail-fast:** Throws clear, descriptive errors during development if you typo a setting name or try to access an
|
|
14
|
+
unexposed variable in a template.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
Install the package directly from PyPI:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install django-settings-expose
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Configuration
|
|
29
|
+
|
|
30
|
+
1. Add the context processor to your `settings.py` inside the `TEMPLATES` configuration:
|
|
31
|
+
|
|
32
|
+
```python
|
|
33
|
+
# settings.py
|
|
34
|
+
|
|
35
|
+
TEMPLATES = [
|
|
36
|
+
{
|
|
37
|
+
# ...
|
|
38
|
+
"OPTIONS": {
|
|
39
|
+
"context_processors": [
|
|
40
|
+
# ...
|
|
41
|
+
# Add this line:
|
|
42
|
+
"django_settings_expose.settings_expose",
|
|
43
|
+
],
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
]
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
2. Define the list of settings you want to expose to your templates using `SETTINGS_EXPOSE`:
|
|
50
|
+
|
|
51
|
+
```python
|
|
52
|
+
# settings.py
|
|
53
|
+
|
|
54
|
+
API_VERSION = "v1.2.6"
|
|
55
|
+
COMPANY_NAME = "My Awesome Company"
|
|
56
|
+
SECRET_KEY = "super-secret" # Keep this safe!
|
|
57
|
+
|
|
58
|
+
# Whitelist variables to be accessible in templates
|
|
59
|
+
SETTINGS_EXPOSE = [
|
|
60
|
+
"API_VERSION",
|
|
61
|
+
"COMPANY_NAME",
|
|
62
|
+
]
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Usage in Templates
|
|
68
|
+
|
|
69
|
+
All exposed settings are made available via a globally accessible `{{ settings }}` dictionary variable:
|
|
70
|
+
|
|
71
|
+
```html
|
|
72
|
+
|
|
73
|
+
<footer>
|
|
74
|
+
<p>Copyright © 2026 {{ settings.COMPANY_NAME }}</p>
|
|
75
|
+
<p>API Version: {{ settings.API_VERSION }}</p>
|
|
76
|
+
</footer>
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Error Handling
|
|
80
|
+
|
|
81
|
+
To protect you from typos and silent bugs, the library will raise explicit exceptions:
|
|
82
|
+
|
|
83
|
+
* If a variable listed in `SETTINGS_EXPOSE` is missing from `settings.py`, it throws an `UndefinedSettingError` on
|
|
84
|
+
startup.
|
|
85
|
+
* If a template attempts to access a variable that wasn't whitelisted (e.g., `{{ settings.SECRET_KEY }}`), it
|
|
86
|
+
throws an `UnexposedSettingError`.
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## License & Acknowledgements
|
|
91
|
+
|
|
92
|
+
This project is licensed under the **BSD 3-Clause License**.
|
|
93
|
+
|
|
94
|
+
It is based on the original concept of `django-settings-export` by `Jakub Roztocil <jakub@subtleapps.com>` (Copyright ©
|
|
95
|
+
2014).
|
|
96
|
+
Modified and optimized by `Vladimir Klimenko <v.klimenko.2137@gmail.com>` (Copyright © 2026).
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Modern implementation of Django settings exporter to templates.
|
|
3
|
+
Based on django-settings-export by Jakub Roztocil.
|
|
4
|
+
|
|
5
|
+
Original work Copyright © 2014 Jakub Roztocil <jakub@subtleapps.com>
|
|
6
|
+
Modified work Copyright © 2026 Vladimir Klimenko <v.klimenko.2137@gmail.com>
|
|
7
|
+
|
|
8
|
+
Licensed under the MIT License.
|
|
9
|
+
The original component is licensed under the BSD 3-Clause License.
|
|
10
|
+
See the LICENSE file in the root of this project for full license texts.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from django.conf import settings as django_settings
|
|
14
|
+
from django.core.exceptions import ImproperlyConfigured
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class SettingsExposeError(ImproperlyConfigured):
|
|
18
|
+
"""Base error indicating misconfiguration."""
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class UndefinedSettingError(SettingsExposeError):
|
|
22
|
+
"""An undefined setting name included in SETTINGS_EXPOSE."""
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class UnexposedSettingError(SettingsExposeError):
|
|
26
|
+
"""An unexposed setting has been accessed from a template."""
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class ExposedSettings(dict):
|
|
30
|
+
def __init__(self, settings_obj, **kwargs):
|
|
31
|
+
super().__init__(**kwargs)
|
|
32
|
+
for var in getattr(settings_obj, "SETTINGS_EXPOSE", []):
|
|
33
|
+
try:
|
|
34
|
+
self[var] = getattr(settings_obj, var)
|
|
35
|
+
except AttributeError:
|
|
36
|
+
raise UndefinedSettingError(
|
|
37
|
+
f"'{var}' is included in SETTINGS_EXPOSE "
|
|
38
|
+
f"but it does not exist in settings.py!",
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
def __missing__(self, key):
|
|
42
|
+
if hasattr(self, key):
|
|
43
|
+
raise KeyError(key)
|
|
44
|
+
raise UnexposedSettingError(
|
|
45
|
+
f"The 'settings.{key}' variable is not accessible from templates. "
|
|
46
|
+
f"Please add '{key}' to the SETTINGS_EXPOSE list in settings.py.",
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
CONTEXT_CACHE = {"settings": ExposedSettings(settings_obj=django_settings)}
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def settings_expose(_):
|
|
54
|
+
return CONTEXT_CACHE
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
__all__ = [
|
|
58
|
+
"settings_expose",
|
|
59
|
+
"SettingsExposeError",
|
|
60
|
+
"UndefinedSettingError",
|
|
61
|
+
"UnexposedSettingError",
|
|
62
|
+
]
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "django-settings-expose"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Fast, cached Django settings exporter to templates."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.9, <=3.14"
|
|
7
|
+
license = {text = "MIT"}
|
|
8
|
+
authors = [
|
|
9
|
+
{name = "Vladimir Klimenko", email = "v.klimenko.2137@gmail.com"}
|
|
10
|
+
]
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Framework :: Django",
|
|
13
|
+
"Framework :: Django :: 3.2",
|
|
14
|
+
"Framework :: Django :: 4.2",
|
|
15
|
+
"Framework :: Django :: 5.2",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3.9",
|
|
18
|
+
"Programming Language :: Python :: 3.10",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Programming Language :: Python :: 3.12",
|
|
21
|
+
"Programming Language :: Python :: 3.13",
|
|
22
|
+
"Programming Language :: Python :: 3.14",
|
|
23
|
+
"License :: OSI Approved :: MIT License",
|
|
24
|
+
]
|
|
25
|
+
dependencies = [
|
|
26
|
+
"Django>=3.2,<=5.2",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[build-system]
|
|
30
|
+
requires = ["hatchling"]
|
|
31
|
+
build-backend = "hatchling.build"
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
version = 1
|
|
2
|
+
revision = 3
|
|
3
|
+
requires-python = ">=3.9, <=3.14"
|
|
4
|
+
resolution-markers = [
|
|
5
|
+
"python_full_version >= '3.12'",
|
|
6
|
+
"python_full_version >= '3.10' and python_full_version < '3.12'",
|
|
7
|
+
"python_full_version < '3.10'",
|
|
8
|
+
]
|
|
9
|
+
|
|
10
|
+
[[package]]
|
|
11
|
+
name = "asgiref"
|
|
12
|
+
version = "3.11.1"
|
|
13
|
+
source = { registry = "https://pypi.org/simple" }
|
|
14
|
+
dependencies = [
|
|
15
|
+
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
|
16
|
+
]
|
|
17
|
+
sdist = { url = "https://files.pythonhosted.org/packages/63/40/f03da1264ae8f7cfdbf9146542e5e7e8100a4c66ab48e791df9a03d3f6c0/asgiref-3.11.1.tar.gz", hash = "sha256:5f184dc43b7e763efe848065441eac62229c9f7b0475f41f80e207a114eda4ce", size = 38550, upload-time = "2026-02-03T13:30:14.33Z" }
|
|
18
|
+
wheels = [
|
|
19
|
+
{ url = "https://files.pythonhosted.org/packages/5c/0a/a72d10ed65068e115044937873362e6e32fab1b7dce0046aeb224682c989/asgiref-3.11.1-py3-none-any.whl", hash = "sha256:e8667a091e69529631969fd45dc268fa79b99c92c5fcdda727757e52146ec133", size = 24345, upload-time = "2026-02-03T13:30:13.039Z" },
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "django"
|
|
24
|
+
version = "4.2.30"
|
|
25
|
+
source = { registry = "https://pypi.org/simple" }
|
|
26
|
+
dependencies = [
|
|
27
|
+
{ name = "asgiref" },
|
|
28
|
+
{ name = "sqlparse" },
|
|
29
|
+
{ name = "tzdata", marker = "sys_platform == 'win32'" },
|
|
30
|
+
]
|
|
31
|
+
sdist = { url = "https://files.pythonhosted.org/packages/11/b5/f1a53dc68da6429d6e0345bb848161e2381a2e9f02700148911e8582c2b3/django-4.2.30.tar.gz", hash = "sha256:4ebc7a434e3819db6cf4b399fb5b3f536310a30e8486f08b66886840be84b37c", size = 10468707, upload-time = "2026-04-07T14:05:45.57Z" }
|
|
32
|
+
wheels = [
|
|
33
|
+
{ url = "https://files.pythonhosted.org/packages/39/b7/a7c96f239cf91313a6589233fed55111c7063b26683b226802732c455dbc/django-4.2.30-py3-none-any.whl", hash = "sha256:4d07aaf1c62f9984842b67c2874ebbf7056a17be253860299b93ae1881faad65", size = 7997231, upload-time = "2026-04-07T14:05:38.241Z" },
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
[[package]]
|
|
37
|
+
name = "django-settings-expose"
|
|
38
|
+
version = "0.1.0"
|
|
39
|
+
source = { editable = "." }
|
|
40
|
+
dependencies = [
|
|
41
|
+
{ name = "django" },
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[package.metadata]
|
|
45
|
+
requires-dist = [{ name = "django", specifier = ">=3.2,<=5.2" }]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "sqlparse"
|
|
49
|
+
version = "0.5.5"
|
|
50
|
+
source = { registry = "https://pypi.org/simple" }
|
|
51
|
+
sdist = { url = "https://files.pythonhosted.org/packages/90/76/437d71068094df0726366574cf3432a4ed754217b436eb7429415cf2d480/sqlparse-0.5.5.tar.gz", hash = "sha256:e20d4a9b0b8585fdf63b10d30066c7c94c5d7a7ec47c889a2d83a3caa93ff28e", size = 120815, upload-time = "2025-12-19T07:17:45.073Z" }
|
|
52
|
+
wheels = [
|
|
53
|
+
{ url = "https://files.pythonhosted.org/packages/49/4b/359f28a903c13438ef59ebeee215fb25da53066db67b305c125f1c6d2a25/sqlparse-0.5.5-py3-none-any.whl", hash = "sha256:12a08b3bf3eec877c519589833aed092e2444e68240a3577e8e26148acc7b1ba", size = 46138, upload-time = "2025-12-19T07:17:46.573Z" },
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "typing-extensions"
|
|
58
|
+
version = "4.15.0"
|
|
59
|
+
source = { registry = "https://pypi.org/simple" }
|
|
60
|
+
sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" }
|
|
61
|
+
wheels = [
|
|
62
|
+
{ url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" },
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "tzdata"
|
|
67
|
+
version = "2026.2"
|
|
68
|
+
source = { registry = "https://pypi.org/simple" }
|
|
69
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ba/19/1b9b0e29f30c6d35cb345486df41110984ea67ae69dddbc0e8a100999493/tzdata-2026.2.tar.gz", hash = "sha256:9173fde7d80d9018e02a662e168e5a2d04f87c41ea174b139fbef642eda62d10", size = 198254, upload-time = "2026-04-24T15:22:08.651Z" }
|
|
70
|
+
wheels = [
|
|
71
|
+
{ url = "https://files.pythonhosted.org/packages/ce/e4/dccd7f47c4b64213ac01ef921a1337ee6e30e8c6466046018326977efd95/tzdata-2026.2-py2.py3-none-any.whl", hash = "sha256:bbe9af844f658da81a5f95019480da3a89415801f6cc966806612cc7169bffe7", size = 349321, upload-time = "2026-04-24T15:22:05.876Z" },
|
|
72
|
+
]
|