django-letsencrypt 5.1.0__py3-none-any.whl → 6.0.1__py3-none-any.whl
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_letsencrypt-5.1.0.dist-info → django_letsencrypt-6.0.1.dist-info}/METADATA +47 -42
- {django_letsencrypt-5.1.0.dist-info → django_letsencrypt-6.0.1.dist-info}/RECORD +6 -6
- {django_letsencrypt-5.1.0.dist-info → django_letsencrypt-6.0.1.dist-info}/WHEEL +1 -1
- letsencrypt/__init__.py +2 -2
- {django_letsencrypt-5.1.0.dist-info → django_letsencrypt-6.0.1.dist-info}/licenses/LICENSE +0 -0
- {django_letsencrypt-5.1.0.dist-info → django_letsencrypt-6.0.1.dist-info}/top_level.txt +0 -0
|
@@ -1,53 +1,50 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: django-letsencrypt
|
|
3
|
-
Version:
|
|
3
|
+
Version: 6.0.1
|
|
4
4
|
Summary: A simple Django app to handle Let's Encrypt ACME challenges.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
5
|
+
Author-email: Peter Urda <foss@urda.engineering>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/urda/django-letsencrypt
|
|
8
|
+
Classifier: Development Status :: 6 - Mature
|
|
10
9
|
Classifier: Environment :: Web Environment
|
|
11
10
|
Classifier: Framework :: Django
|
|
12
|
-
Classifier: Framework :: Django :: 4
|
|
13
|
-
Classifier: Framework :: Django ::
|
|
14
|
-
Classifier: Framework :: Django :: 5
|
|
11
|
+
Classifier: Framework :: Django :: 4
|
|
12
|
+
Classifier: Framework :: Django :: 4.2
|
|
13
|
+
Classifier: Framework :: Django :: 5
|
|
14
|
+
Classifier: Framework :: Django :: 5.2
|
|
15
|
+
Classifier: Framework :: Django :: 6
|
|
16
|
+
Classifier: Framework :: Django :: 6.0
|
|
17
|
+
Classifier: Framework :: Flake8
|
|
18
|
+
Classifier: Framework :: Pytest
|
|
19
|
+
Classifier: Framework :: tox
|
|
15
20
|
Classifier: Intended Audience :: Developers
|
|
16
|
-
Classifier:
|
|
21
|
+
Classifier: Intended Audience :: Information Technology
|
|
22
|
+
Classifier: Intended Audience :: System Administrators
|
|
17
23
|
Classifier: Natural Language :: English
|
|
18
24
|
Classifier: Operating System :: OS Independent
|
|
19
25
|
Classifier: Programming Language :: Python
|
|
20
26
|
Classifier: Programming Language :: Python :: 3
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
23
27
|
Classifier: Programming Language :: Python :: 3.10
|
|
24
28
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
29
|
Classifier: Programming Language :: Python :: 3.12
|
|
30
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
31
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
26
32
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
27
33
|
Classifier: Topic :: Internet
|
|
28
34
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
29
35
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
30
|
-
|
|
36
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
|
|
37
|
+
Classifier: Topic :: Security
|
|
38
|
+
Requires-Python: <4,>=3.10
|
|
31
39
|
Description-Content-Type: text/markdown
|
|
32
40
|
License-File: LICENSE
|
|
33
|
-
Requires-Dist: Django>=4.2.
|
|
34
|
-
Requires-Dist: pytz>=2025.2
|
|
35
|
-
Dynamic: author
|
|
36
|
-
Dynamic: author-email
|
|
37
|
-
Dynamic: classifier
|
|
38
|
-
Dynamic: description
|
|
39
|
-
Dynamic: description-content-type
|
|
40
|
-
Dynamic: home-page
|
|
41
|
-
Dynamic: license
|
|
41
|
+
Requires-Dist: Django>=4.2.28
|
|
42
42
|
Dynamic: license-file
|
|
43
|
-
Dynamic: requires-dist
|
|
44
|
-
Dynamic: requires-python
|
|
45
|
-
Dynamic: summary
|
|
46
43
|
|
|
47
44
|
# Let's Encrypt App for Django
|
|
48
45
|
|
|
49
46
|
`django-letsencrypt` will allow you to add, remove, and update any
|
|
50
|
-
[ACME challenge](https://
|
|
47
|
+
[ACME challenge](https://datatracker.ietf.org/doc/html/rfc8555) objects you may
|
|
51
48
|
need through your Django admin interface. Simply add the `ACME challenge`
|
|
52
49
|
and `response` for your app to serve up the necessary information for
|
|
53
50
|
[Let's Encrypt](https://letsencrypt.org/how-it-works/) validation.
|
|
@@ -59,36 +56,35 @@ versions of Django supported, even multiple databases too!
|
|
|
59
56
|
And of course all wrapped up and published to
|
|
60
57
|
[PyPI](https://pypi.org/project/django-letsencrypt/) for standard installation!
|
|
61
58
|
|
|
62
|
-
|
|
59
|
+
## Supported Configurations
|
|
63
60
|
|
|
64
61
|
`django-letsencrypt` is tested across a number of configurations, here's what's
|
|
65
62
|
supported so far:
|
|
66
63
|
|
|
67
64
|
- Python Versions Supported:
|
|
68
|
-
- `3.
|
|
69
|
-
- `3.
|
|
70
|
-
- `3.
|
|
71
|
-
- `3.
|
|
72
|
-
- `3.
|
|
73
|
-
- `3.8` (with Django `4.2`)
|
|
65
|
+
- `3.14` (with Django `6.0`, `5.2`)
|
|
66
|
+
- `3.13` (with Django `6.0`, `5.2`)
|
|
67
|
+
- `3.12` (with Django `6.0`, `5.2`, `4.2`)
|
|
68
|
+
- `3.11` (with Django `5.2`, `4.2`)
|
|
69
|
+
- `3.10` (with Django `5.2`, `4.2`)
|
|
74
70
|
- Django Versions Supported:
|
|
75
|
-
- `
|
|
76
|
-
- `5.
|
|
77
|
-
- `4.2 LTS` minimum version `4.2.
|
|
71
|
+
- `6.0` minimum version `6.0.2`
|
|
72
|
+
- `5.2 LTS` minimum version `5.2.11`
|
|
73
|
+
- `4.2 LTS` minimum version `4.2.28`
|
|
78
74
|
- Databases Supported:
|
|
79
75
|
- `mysql`
|
|
80
76
|
- `postgres`
|
|
81
77
|
- `sqlite`
|
|
82
78
|
|
|
83
|
-
|
|
79
|
+
## Recent Build Status Badges
|
|
84
80
|
|
|
85
81
|
- [](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml)
|
|
86
|
-
- [](https://github.com/urda/django-letsencrypt/actions/workflows/testing-42.yaml)
|
|
83
|
+
- [](https://github.com/urda/django-letsencrypt/actions/workflows/testing-52.yaml)
|
|
84
|
+
- [](https://github.com/urda/django-letsencrypt/actions/workflows/testing-60.yaml)
|
|
89
85
|
- [](https://codecov.io/gh/urda/django-letsencrypt)
|
|
90
86
|
|
|
91
|
-
|
|
87
|
+
## Installation & Configuration
|
|
92
88
|
|
|
93
89
|
1. `pip install django-letsencrypt`
|
|
94
90
|
|
|
@@ -123,7 +119,7 @@ re_path(r'^\.well-known/', include('letsencrypt.urls'))
|
|
|
123
119
|
|
|
124
120
|
7. Enjoy your easy to manage `ACME Challenges` inside your Django project!
|
|
125
121
|
|
|
126
|
-
|
|
122
|
+
## Example Project
|
|
127
123
|
|
|
128
124
|
If you would like a demo of how to use this application simply clone this project's
|
|
129
125
|
`git` repository from [GitHub](https://github.com/urda/django-letsencrypt),
|
|
@@ -131,3 +127,12 @@ take a moment to read the `README.md` file within the
|
|
|
131
127
|
[`example_project`](https://github.com/urda/django-letsencrypt/tree/master/example_project)
|
|
132
128
|
directory, and follow the directions. That will spin up a small sample django
|
|
133
129
|
application already configured for you to try out.
|
|
130
|
+
|
|
131
|
+
## Development
|
|
132
|
+
|
|
133
|
+
1. Make sure you have installed [uv](https://docs.astral.sh/uv/) in your environment.
|
|
134
|
+
2. Clone the repo to your development machine.
|
|
135
|
+
3. Configure your `git` hooks with `git config core.hooksPath .githooks` for the project.
|
|
136
|
+
4. Run `uv sync` to create the virtual environment and install required dependencies.
|
|
137
|
+
5. Run `make test` for the full test suite.
|
|
138
|
+
6. Run `make test-tox` to run the entire `tox` suite.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
django_letsencrypt-
|
|
2
|
-
letsencrypt/__init__.py,sha256=
|
|
1
|
+
django_letsencrypt-6.0.1.dist-info/licenses/LICENSE,sha256=eCE-vLWjRU-36lD22l8Lbp_XpPT1Esdl0o70KlwBYHo,11345
|
|
2
|
+
letsencrypt/__init__.py,sha256=GVaK4TKvwtDam-ixTWGRU2hJTFB6vkBG9jqd5ITsCj0,646
|
|
3
3
|
letsencrypt/admin.py,sha256=4m_fVteJeP6-BpvdyAcHEJ1s3zARl2F4y4h8a5uYS80,1758
|
|
4
4
|
letsencrypt/apps.py,sha256=KTY-mm_Pv5uHEhEKuPgMiJCTEq4-NtwOQK1D_gfTN2Y,751
|
|
5
5
|
letsencrypt/models.py,sha256=nU-sjVIb8V2_-TwxX7qxR1ioSwH00JxSDN-ePGsHKSY,1568
|
|
@@ -8,7 +8,7 @@ letsencrypt/urls.py,sha256=PKpM9a3pIszlZzOfam1l3os4fjChu8RCtMxDb5ReNMI,749
|
|
|
8
8
|
letsencrypt/views.py,sha256=YsdN-i4larvajzoQuTBAj9CX3watHOu1zYNESRBBR5E,893
|
|
9
9
|
letsencrypt/migrations/0001_squashed_0004_squash_for_mysql_support.py,sha256=R2-FB0gb6dIHVfM0RQOT2-qV0Iwn3i8g9WXvU9M4zc0,900
|
|
10
10
|
letsencrypt/migrations/__init__.py,sha256=753utKcjHt5snhTYhBfAY_5QBvTMpDF8zFkiAwbcn40,564
|
|
11
|
-
django_letsencrypt-
|
|
12
|
-
django_letsencrypt-
|
|
13
|
-
django_letsencrypt-
|
|
14
|
-
django_letsencrypt-
|
|
11
|
+
django_letsencrypt-6.0.1.dist-info/METADATA,sha256=F5VgPWvbUjn9nbaElnmy7BNcAwpIp3dOD0BCse9fhv4,5696
|
|
12
|
+
django_letsencrypt-6.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
13
|
+
django_letsencrypt-6.0.1.dist-info/top_level.txt,sha256=cDimIKtupoBiTWXykGSs1dP1xs8jrAoTwz1txrc2Img,12
|
|
14
|
+
django_letsencrypt-6.0.1.dist-info/RECORD,,
|
letsencrypt/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Copyright 2016-
|
|
2
|
+
Copyright 2016-2026 Peter Urda
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
|
|
|
14
14
|
limitations under the License.
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
-
__version__ = '
|
|
17
|
+
__version__ = '6.0.1'
|
|
18
18
|
|
|
19
19
|
default_app_config = 'letsencrypt.apps.LetsEncryptConfig'
|
|
File without changes
|
|
File without changes
|