django-letsencrypt 4.0.0__tar.gz → 5.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.
Files changed (24) hide show
  1. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/CHANGELOG.md +40 -0
  2. django_letsencrypt-5.1.0/PKG-INFO +133 -0
  3. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/README.md +18 -9
  4. django_letsencrypt-5.1.0/django_letsencrypt.egg-info/PKG-INFO +133 -0
  5. django_letsencrypt-5.1.0/django_letsencrypt.egg-info/requires.txt +2 -0
  6. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/letsencrypt/__init__.py +2 -2
  7. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/letsencrypt/apps.py +2 -1
  8. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/letsencrypt/urls.py +7 -4
  9. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/setup.py +13 -11
  10. django-letsencrypt-4.0.0/PKG-INFO +0 -109
  11. django-letsencrypt-4.0.0/django_letsencrypt.egg-info/PKG-INFO +0 -109
  12. django-letsencrypt-4.0.0/django_letsencrypt.egg-info/requires.txt +0 -2
  13. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/LICENSE +0 -0
  14. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/MANIFEST.in +0 -0
  15. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/django_letsencrypt.egg-info/SOURCES.txt +0 -0
  16. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/django_letsencrypt.egg-info/dependency_links.txt +0 -0
  17. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/django_letsencrypt.egg-info/top_level.txt +0 -0
  18. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/letsencrypt/admin.py +0 -0
  19. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/letsencrypt/migrations/0001_squashed_0004_squash_for_mysql_support.py +0 -0
  20. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/letsencrypt/migrations/__init__.py +0 -0
  21. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/letsencrypt/models.py +0 -0
  22. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/letsencrypt/tests.py +0 -0
  23. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/letsencrypt/views.py +0 -0
  24. {django-letsencrypt-4.0.0 → django_letsencrypt-5.1.0}/setup.cfg +0 -0
@@ -1,5 +1,45 @@
1
1
  # django-letsencrypt CHANGELOG
2
2
 
3
+ ## v5.1.0
4
+
5
+ There are no major project changes or code updates. This release aligns with
6
+ recent Django releases and Python releases.
7
+
8
+ - Internal Updates:
9
+ - Brought `tox` up-to-date with the current supported Django+Python versions.
10
+ - Brought GitHub actions up-to-date with the current supported Django+Python versions.
11
+ - This project will no longer use the "sign" feature of PyPi.
12
+ - See also: https://blog.pypi.org/posts/2023-05-23-removing-pgp/
13
+ - Dependency Updates:
14
+ - `pytz` version `2025.2` or greater now required.
15
+ - General Updates:
16
+ - Updated `README` with supported version information.
17
+
18
+ ## v4.1.0
19
+
20
+ There are no major project changes or code updates. This release aligns with
21
+ recent Django releases and Python releases.
22
+
23
+ - Internal Updates:
24
+ - `urls.url` replaced with `urls.re_path`.
25
+ - See commit `d8e823ed5d4dac9a8be885b1f616d7425681d7f7`.
26
+ - Address `models.W042` warning for `letsencrypt.AcmeChallenge`.
27
+ - See commit `5d644e7e0ec3b5db9e9a28d3b662cc9bab15b188`.
28
+ - Dependency Updates:
29
+ - `pytz` version `2021.3` or greater now required.
30
+ - Project Updates
31
+ - Testing and other related automations have moved to GitHub Actions.
32
+ - Updated `.python-version` file for latest releases.
33
+ - No longer supported:
34
+ - Python `3.6`.
35
+ - Travis CI has been dropped from the project.
36
+ - General Updates:
37
+ - General `README` updates.
38
+ - Updated copyright headers.
39
+ - We still try and follow the supported versions as detailed:
40
+ - [Django supported versions](https://www.djangoproject.com/download/#supported-versions)
41
+ - [Django supported Python versions](https://docs.djangoproject.com/en/4.0/faq/install/#what-python-version-can-i-use-with-django)
42
+
3
43
  ## v4.0.0
4
44
 
5
45
  - Breaking Changes
@@ -0,0 +1,133 @@
1
+ Metadata-Version: 2.4
2
+ Name: django-letsencrypt
3
+ Version: 5.1.0
4
+ Summary: A simple Django app to handle Let's Encrypt ACME challenges.
5
+ Home-page: https://github.com/urda/django-letsencrypt
6
+ Author: Peter Urda
7
+ Author-email: foss@urda.engineering
8
+ License: Apache License, Version 2.0
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Environment :: Web Environment
11
+ Classifier: Framework :: Django
12
+ Classifier: Framework :: Django :: 4.0
13
+ Classifier: Framework :: Django :: 5.0
14
+ Classifier: Framework :: Django :: 5.1
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: Apache Software License
17
+ Classifier: Natural Language :: English
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python
20
+ Classifier: Programming Language :: Python :: 3
21
+ Classifier: Programming Language :: Python :: 3.8
22
+ Classifier: Programming Language :: Python :: 3.9
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3 :: Only
27
+ Classifier: Topic :: Internet
28
+ Classifier: Topic :: Internet :: WWW/HTTP
29
+ Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
30
+ Requires-Python: >=3.8, <4
31
+ Description-Content-Type: text/markdown
32
+ License-File: LICENSE
33
+ Requires-Dist: Django>=4.2.20
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
42
+ Dynamic: license-file
43
+ Dynamic: requires-dist
44
+ Dynamic: requires-python
45
+ Dynamic: summary
46
+
47
+ # Let's Encrypt App for Django
48
+
49
+ `django-letsencrypt` will allow you to add, remove, and update any
50
+ [ACME challenge](https://github.com/ietf-wg-acme/acme/) objects you may
51
+ need through your Django admin interface. Simply add the `ACME challenge`
52
+ and `response` for your app to serve up the necessary information for
53
+ [Let's Encrypt](https://letsencrypt.org/how-it-works/) validation.
54
+
55
+ This project strives to make installation, configuration, and usage a snap!
56
+ From high levels of code coverage, multiple compatible python versions, multiple
57
+ versions of Django supported, even multiple databases too!
58
+
59
+ And of course all wrapped up and published to
60
+ [PyPI](https://pypi.org/project/django-letsencrypt/) for standard installation!
61
+
62
+ # Supported Configurations
63
+
64
+ `django-letsencrypt` is tested across a number of configurations, here's what's
65
+ supported so far:
66
+
67
+ - Python Versions Supported:
68
+ - `3.13` (with Django `5.1`)
69
+ - `3.12` (with Django `5.1`, `5.0`, `4.2`)
70
+ - `3.11` (with Django `5.1`, `5.0`, `4.2`)
71
+ - `3.10` (with Django `5.1`, `5.0`, `4.2`)
72
+ - `3.9` (with Django `4.2`)
73
+ - `3.8` (with Django `4.2`)
74
+ - Django Versions Supported:
75
+ - `5.1` minimum version `5.1.7`
76
+ - `5.0` minimum version `5.0.13`
77
+ - `4.2 LTS` minimum version `4.2.20`
78
+ - Databases Supported:
79
+ - `mysql`
80
+ - `postgres`
81
+ - `sqlite`
82
+
83
+ # Recent Build Status Badges
84
+
85
+ - [![Linting - Master](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml)
86
+ - [![Testing Django 4.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml)
87
+ - [![Testing Django 5.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml)
88
+ - [![Testing Django 5.1 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml)
89
+ - [![Codecov - Master](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg?token=yn64lBfwZr)](https://codecov.io/gh/urda/django-letsencrypt)
90
+
91
+ # Installation & Configuration
92
+
93
+ 1. `pip install django-letsencrypt`
94
+
95
+ 2. Add `letsencrypt` to your `INSTALLED_APPS`
96
+
97
+ ```python
98
+ INSTALLED_APPS = [
99
+ ... ,
100
+ 'letsencrypt',
101
+ ... ,
102
+ ]
103
+ ```
104
+
105
+ 3. Include the `letsencrypt` in your project's `urls.py`,
106
+ or where applicable (usually your root `urls.py`).
107
+
108
+ ```python
109
+ re_path(r'^\.well-known/', include('letsencrypt.urls'))
110
+ ```
111
+
112
+ 4. Run `manage.py migrate` to create the required table for the
113
+ `letsencrypt` model
114
+
115
+ 5. Create your `ACME Challenge` objects in your Django admin interface
116
+
117
+ 6. Test your `ACME Challenge` objects and their responses by visiting
118
+ them:
119
+
120
+ ```
121
+ {Django Site}/.well-known/acme-challenge/challenge_text
122
+ ```
123
+
124
+ 7. Enjoy your easy to manage `ACME Challenges` inside your Django project!
125
+
126
+ # Example Project
127
+
128
+ If you would like a demo of how to use this application simply clone this project's
129
+ `git` repository from [GitHub](https://github.com/urda/django-letsencrypt),
130
+ take a moment to read the `README.md` file within the
131
+ [`example_project`](https://github.com/urda/django-letsencrypt/tree/master/example_project)
132
+ directory, and follow the directions. That will spin up a small sample django
133
+ application already configured for you to try out.
@@ -1,7 +1,5 @@
1
1
  # Let's Encrypt App for Django
2
2
 
3
- [![Travis Build Status (Master)](https://travis-ci.com/urda/django-letsencrypt.svg?branch=master)](https://travis-ci.com/urda/django-letsencrypt) [![Codecov Status (Master)](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg)](https://codecov.io/gh/urda/django-letsencrypt/branch/master)
4
-
5
3
  `django-letsencrypt` will allow you to add, remove, and update any
6
4
  [ACME challenge](https://github.com/ietf-wg-acme/acme/) objects you may
7
5
  need through your Django admin interface. Simply add the `ACME challenge`
@@ -21,18 +19,29 @@ And of course all wrapped up and published to
21
19
  supported so far:
22
20
 
23
21
  - Python Versions Supported:
24
- - `3.8`
25
- - `3.7`
26
- - `3.6`
22
+ - `3.13` (with Django `5.1`)
23
+ - `3.12` (with Django `5.1`, `5.0`, `4.2`)
24
+ - `3.11` (with Django `5.1`, `5.0`, `4.2`)
25
+ - `3.10` (with Django `5.1`, `5.0`, `4.2`)
26
+ - `3.9` (with Django `4.2`)
27
+ - `3.8` (with Django `4.2`)
27
28
  - Django Versions Supported:
28
- - `3.1` minimum version `3.1.2`
29
- - `3.0` minimum version `3.0.10`
30
- - `2.2` minimum version `2.2.16`
29
+ - `5.1` minimum version `5.1.7`
30
+ - `5.0` minimum version `5.0.13`
31
+ - `4.2 LTS` minimum version `4.2.20`
31
32
  - Databases Supported:
32
33
  - `mysql`
33
34
  - `postgres`
34
35
  - `sqlite`
35
36
 
37
+ # Recent Build Status Badges
38
+
39
+ - [![Linting - Master](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml)
40
+ - [![Testing Django 4.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml)
41
+ - [![Testing Django 5.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml)
42
+ - [![Testing Django 5.1 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml)
43
+ - [![Codecov - Master](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg?token=yn64lBfwZr)](https://codecov.io/gh/urda/django-letsencrypt)
44
+
36
45
  # Installation & Configuration
37
46
 
38
47
  1. `pip install django-letsencrypt`
@@ -51,7 +60,7 @@ INSTALLED_APPS = [
51
60
  or where applicable (usually your root `urls.py`).
52
61
 
53
62
  ```python
54
- url(r'^\.well-known/', include('letsencrypt.urls'))
63
+ re_path(r'^\.well-known/', include('letsencrypt.urls'))
55
64
  ```
56
65
 
57
66
  4. Run `manage.py migrate` to create the required table for the
@@ -0,0 +1,133 @@
1
+ Metadata-Version: 2.4
2
+ Name: django-letsencrypt
3
+ Version: 5.1.0
4
+ Summary: A simple Django app to handle Let's Encrypt ACME challenges.
5
+ Home-page: https://github.com/urda/django-letsencrypt
6
+ Author: Peter Urda
7
+ Author-email: foss@urda.engineering
8
+ License: Apache License, Version 2.0
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Environment :: Web Environment
11
+ Classifier: Framework :: Django
12
+ Classifier: Framework :: Django :: 4.0
13
+ Classifier: Framework :: Django :: 5.0
14
+ Classifier: Framework :: Django :: 5.1
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: Apache Software License
17
+ Classifier: Natural Language :: English
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python
20
+ Classifier: Programming Language :: Python :: 3
21
+ Classifier: Programming Language :: Python :: 3.8
22
+ Classifier: Programming Language :: Python :: 3.9
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3 :: Only
27
+ Classifier: Topic :: Internet
28
+ Classifier: Topic :: Internet :: WWW/HTTP
29
+ Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
30
+ Requires-Python: >=3.8, <4
31
+ Description-Content-Type: text/markdown
32
+ License-File: LICENSE
33
+ Requires-Dist: Django>=4.2.20
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
42
+ Dynamic: license-file
43
+ Dynamic: requires-dist
44
+ Dynamic: requires-python
45
+ Dynamic: summary
46
+
47
+ # Let's Encrypt App for Django
48
+
49
+ `django-letsencrypt` will allow you to add, remove, and update any
50
+ [ACME challenge](https://github.com/ietf-wg-acme/acme/) objects you may
51
+ need through your Django admin interface. Simply add the `ACME challenge`
52
+ and `response` for your app to serve up the necessary information for
53
+ [Let's Encrypt](https://letsencrypt.org/how-it-works/) validation.
54
+
55
+ This project strives to make installation, configuration, and usage a snap!
56
+ From high levels of code coverage, multiple compatible python versions, multiple
57
+ versions of Django supported, even multiple databases too!
58
+
59
+ And of course all wrapped up and published to
60
+ [PyPI](https://pypi.org/project/django-letsencrypt/) for standard installation!
61
+
62
+ # Supported Configurations
63
+
64
+ `django-letsencrypt` is tested across a number of configurations, here's what's
65
+ supported so far:
66
+
67
+ - Python Versions Supported:
68
+ - `3.13` (with Django `5.1`)
69
+ - `3.12` (with Django `5.1`, `5.0`, `4.2`)
70
+ - `3.11` (with Django `5.1`, `5.0`, `4.2`)
71
+ - `3.10` (with Django `5.1`, `5.0`, `4.2`)
72
+ - `3.9` (with Django `4.2`)
73
+ - `3.8` (with Django `4.2`)
74
+ - Django Versions Supported:
75
+ - `5.1` minimum version `5.1.7`
76
+ - `5.0` minimum version `5.0.13`
77
+ - `4.2 LTS` minimum version `4.2.20`
78
+ - Databases Supported:
79
+ - `mysql`
80
+ - `postgres`
81
+ - `sqlite`
82
+
83
+ # Recent Build Status Badges
84
+
85
+ - [![Linting - Master](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml)
86
+ - [![Testing Django 4.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml)
87
+ - [![Testing Django 5.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml)
88
+ - [![Testing Django 5.1 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml)
89
+ - [![Codecov - Master](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg?token=yn64lBfwZr)](https://codecov.io/gh/urda/django-letsencrypt)
90
+
91
+ # Installation & Configuration
92
+
93
+ 1. `pip install django-letsencrypt`
94
+
95
+ 2. Add `letsencrypt` to your `INSTALLED_APPS`
96
+
97
+ ```python
98
+ INSTALLED_APPS = [
99
+ ... ,
100
+ 'letsencrypt',
101
+ ... ,
102
+ ]
103
+ ```
104
+
105
+ 3. Include the `letsencrypt` in your project's `urls.py`,
106
+ or where applicable (usually your root `urls.py`).
107
+
108
+ ```python
109
+ re_path(r'^\.well-known/', include('letsencrypt.urls'))
110
+ ```
111
+
112
+ 4. Run `manage.py migrate` to create the required table for the
113
+ `letsencrypt` model
114
+
115
+ 5. Create your `ACME Challenge` objects in your Django admin interface
116
+
117
+ 6. Test your `ACME Challenge` objects and their responses by visiting
118
+ them:
119
+
120
+ ```
121
+ {Django Site}/.well-known/acme-challenge/challenge_text
122
+ ```
123
+
124
+ 7. Enjoy your easy to manage `ACME Challenges` inside your Django project!
125
+
126
+ # Example Project
127
+
128
+ If you would like a demo of how to use this application simply clone this project's
129
+ `git` repository from [GitHub](https://github.com/urda/django-letsencrypt),
130
+ take a moment to read the `README.md` file within the
131
+ [`example_project`](https://github.com/urda/django-letsencrypt/tree/master/example_project)
132
+ directory, and follow the directions. That will spin up a small sample django
133
+ application already configured for you to try out.
@@ -0,0 +1,2 @@
1
+ Django>=4.2.20
2
+ pytz>=2025.2
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright 2016-2020 Peter Urda
2
+ Copyright 2016-2025 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__ = '4.0.0'
17
+ __version__ = '5.1.0'
18
18
 
19
19
  default_app_config = 'letsencrypt.apps.LetsEncryptConfig'
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright 2016-2020 Peter Urda
2
+ Copyright 2016-2021 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.
@@ -20,3 +20,4 @@ from django.apps import AppConfig
20
20
  class LetsEncryptConfig(AppConfig):
21
21
  name = 'letsencrypt'
22
22
  verbose_name = "Let's Encrypt"
23
+ default_auto_field = 'django.db.models.AutoField'
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright 2016-2020 Peter Urda
2
+ Copyright 2016-2021 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,11 +14,14 @@ See the License for the specific language governing permissions and
14
14
  limitations under the License.
15
15
  """
16
16
 
17
- from django.conf.urls import url
17
+ from django.urls import re_path
18
18
 
19
19
  from . import views
20
20
 
21
-
22
21
  urlpatterns = [
23
- url(r'^acme-challenge/(?P<acme_data>.+)$', views.detail, name='detail'),
22
+ re_path(
23
+ r'^acme-challenge/(?P<acme_data>.+)$',
24
+ views.detail,
25
+ name='detail',
26
+ ),
24
27
  ]
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright 2016-2020 Peter Urda
2
+ Copyright 2016-2025 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.
@@ -24,8 +24,8 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
24
24
 
25
25
  setup(
26
26
  name='django-letsencrypt',
27
- version='4.0.0',
28
- python_requires=">=3.6, <4",
27
+ version='5.1.0',
28
+ python_requires=">=3.8, <4",
29
29
  packages=['letsencrypt'],
30
30
  include_package_data=True,
31
31
  license='Apache License, Version 2.0',
@@ -34,27 +34,29 @@ setup(
34
34
  long_description_content_type='text/markdown',
35
35
  url='https://github.com/urda/django-letsencrypt',
36
36
  author='Peter Urda',
37
- author_email='noreply@urda.com',
37
+ author_email='foss@urda.engineering',
38
38
  install_requires=[
39
- "Django>=2.2.16",
40
- "pytz>=2020.1",
39
+ "Django>=4.2.20",
40
+ "pytz>=2025.2",
41
41
  ],
42
42
  classifiers=[
43
43
  'Development Status :: 5 - Production/Stable',
44
44
  'Environment :: Web Environment',
45
45
  'Framework :: Django',
46
- 'Framework :: Django :: 2.2',
47
- 'Framework :: Django :: 3.0',
48
- 'Framework :: Django :: 3.1',
46
+ 'Framework :: Django :: 4.0',
47
+ 'Framework :: Django :: 5.0',
48
+ 'Framework :: Django :: 5.1',
49
49
  'Intended Audience :: Developers',
50
50
  'License :: OSI Approved :: Apache Software License',
51
51
  'Natural Language :: English',
52
52
  'Operating System :: OS Independent',
53
53
  'Programming Language :: Python',
54
54
  'Programming Language :: Python :: 3',
55
- 'Programming Language :: Python :: 3.6',
56
- 'Programming Language :: Python :: 3.7',
57
55
  'Programming Language :: Python :: 3.8',
56
+ 'Programming Language :: Python :: 3.9',
57
+ 'Programming Language :: Python :: 3.10',
58
+ 'Programming Language :: Python :: 3.11',
59
+ 'Programming Language :: Python :: 3.12',
58
60
  'Programming Language :: Python :: 3 :: Only',
59
61
  'Topic :: Internet',
60
62
  'Topic :: Internet :: WWW/HTTP',
@@ -1,109 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: django-letsencrypt
3
- Version: 4.0.0
4
- Summary: A simple Django app to handle Let's Encrypt ACME challenges.
5
- Home-page: https://github.com/urda/django-letsencrypt
6
- Author: Peter Urda
7
- Author-email: noreply@urda.com
8
- License: Apache License, Version 2.0
9
- Description: # Let's Encrypt App for Django
10
-
11
- [![Travis Build Status (Master)](https://travis-ci.com/urda/django-letsencrypt.svg?branch=master)](https://travis-ci.com/urda/django-letsencrypt) [![Codecov Status (Master)](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg)](https://codecov.io/gh/urda/django-letsencrypt/branch/master)
12
-
13
- `django-letsencrypt` will allow you to add, remove, and update any
14
- [ACME challenge](https://github.com/ietf-wg-acme/acme/) objects you may
15
- need through your Django admin interface. Simply add the `ACME challenge`
16
- and `response` for your app to serve up the necessary information for
17
- [Let's Encrypt](https://letsencrypt.org/how-it-works/) validation.
18
-
19
- This project strives to make installation, configuration, and usage a snap!
20
- From high levels of code coverage, multiple compatible python versions, multiple
21
- versions of Django supported, even multiple databases too!
22
-
23
- And of course all wrapped up and published to
24
- [PyPI](https://pypi.org/project/django-letsencrypt/) for standard installation!
25
-
26
- # Supported Configurations
27
-
28
- `django-letsencrypt` is tested across a number of configurations, here's what's
29
- supported so far:
30
-
31
- - Python Versions Supported:
32
- - `3.8`
33
- - `3.7`
34
- - `3.6`
35
- - Django Versions Supported:
36
- - `3.1` minimum version `3.1.2`
37
- - `3.0` minimum version `3.0.10`
38
- - `2.2` minimum version `2.2.16`
39
- - Databases Supported:
40
- - `mysql`
41
- - `postgres`
42
- - `sqlite`
43
-
44
- # Installation & Configuration
45
-
46
- 1. `pip install django-letsencrypt`
47
-
48
- 2. Add `letsencrypt` to your `INSTALLED_APPS`
49
-
50
- ```python
51
- INSTALLED_APPS = [
52
- ... ,
53
- 'letsencrypt',
54
- ... ,
55
- ]
56
- ```
57
-
58
- 3. Include the `letsencrypt` in your project's `urls.py`,
59
- or where applicable (usually your root `urls.py`).
60
-
61
- ```python
62
- url(r'^\.well-known/', include('letsencrypt.urls'))
63
- ```
64
-
65
- 4. Run `manage.py migrate` to create the required table for the
66
- `letsencrypt` model
67
-
68
- 5. Create your `ACME Challenge` objects in your Django admin interface
69
-
70
- 6. Test your `ACME Challenge` objects and their responses by visiting
71
- them:
72
-
73
- ```
74
- {Django Site}/.well-known/acme-challenge/challenge_text
75
- ```
76
-
77
- 7. Enjoy your easy to manage `ACME Challenges` inside your Django project!
78
-
79
- # Example Project
80
-
81
- If you would like a demo of how to use this application simply clone this project's
82
- `git` repository from [GitHub](https://github.com/urda/django-letsencrypt),
83
- take a moment to read the `README.md` file within the
84
- [`example_project`](https://github.com/urda/django-letsencrypt/tree/master/example_project)
85
- directory, and follow the directions. That will spin up a small sample django
86
- application already configured for you to try out.
87
-
88
- Platform: UNKNOWN
89
- Classifier: Development Status :: 5 - Production/Stable
90
- Classifier: Environment :: Web Environment
91
- Classifier: Framework :: Django
92
- Classifier: Framework :: Django :: 2.2
93
- Classifier: Framework :: Django :: 3.0
94
- Classifier: Framework :: Django :: 3.1
95
- Classifier: Intended Audience :: Developers
96
- Classifier: License :: OSI Approved :: Apache Software License
97
- Classifier: Natural Language :: English
98
- Classifier: Operating System :: OS Independent
99
- Classifier: Programming Language :: Python
100
- Classifier: Programming Language :: Python :: 3
101
- Classifier: Programming Language :: Python :: 3.6
102
- Classifier: Programming Language :: Python :: 3.7
103
- Classifier: Programming Language :: Python :: 3.8
104
- Classifier: Programming Language :: Python :: 3 :: Only
105
- Classifier: Topic :: Internet
106
- Classifier: Topic :: Internet :: WWW/HTTP
107
- Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
108
- Requires-Python: >=3.6, <4
109
- Description-Content-Type: text/markdown
@@ -1,109 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: django-letsencrypt
3
- Version: 4.0.0
4
- Summary: A simple Django app to handle Let's Encrypt ACME challenges.
5
- Home-page: https://github.com/urda/django-letsencrypt
6
- Author: Peter Urda
7
- Author-email: noreply@urda.com
8
- License: Apache License, Version 2.0
9
- Description: # Let's Encrypt App for Django
10
-
11
- [![Travis Build Status (Master)](https://travis-ci.com/urda/django-letsencrypt.svg?branch=master)](https://travis-ci.com/urda/django-letsencrypt) [![Codecov Status (Master)](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg)](https://codecov.io/gh/urda/django-letsencrypt/branch/master)
12
-
13
- `django-letsencrypt` will allow you to add, remove, and update any
14
- [ACME challenge](https://github.com/ietf-wg-acme/acme/) objects you may
15
- need through your Django admin interface. Simply add the `ACME challenge`
16
- and `response` for your app to serve up the necessary information for
17
- [Let's Encrypt](https://letsencrypt.org/how-it-works/) validation.
18
-
19
- This project strives to make installation, configuration, and usage a snap!
20
- From high levels of code coverage, multiple compatible python versions, multiple
21
- versions of Django supported, even multiple databases too!
22
-
23
- And of course all wrapped up and published to
24
- [PyPI](https://pypi.org/project/django-letsencrypt/) for standard installation!
25
-
26
- # Supported Configurations
27
-
28
- `django-letsencrypt` is tested across a number of configurations, here's what's
29
- supported so far:
30
-
31
- - Python Versions Supported:
32
- - `3.8`
33
- - `3.7`
34
- - `3.6`
35
- - Django Versions Supported:
36
- - `3.1` minimum version `3.1.2`
37
- - `3.0` minimum version `3.0.10`
38
- - `2.2` minimum version `2.2.16`
39
- - Databases Supported:
40
- - `mysql`
41
- - `postgres`
42
- - `sqlite`
43
-
44
- # Installation & Configuration
45
-
46
- 1. `pip install django-letsencrypt`
47
-
48
- 2. Add `letsencrypt` to your `INSTALLED_APPS`
49
-
50
- ```python
51
- INSTALLED_APPS = [
52
- ... ,
53
- 'letsencrypt',
54
- ... ,
55
- ]
56
- ```
57
-
58
- 3. Include the `letsencrypt` in your project's `urls.py`,
59
- or where applicable (usually your root `urls.py`).
60
-
61
- ```python
62
- url(r'^\.well-known/', include('letsencrypt.urls'))
63
- ```
64
-
65
- 4. Run `manage.py migrate` to create the required table for the
66
- `letsencrypt` model
67
-
68
- 5. Create your `ACME Challenge` objects in your Django admin interface
69
-
70
- 6. Test your `ACME Challenge` objects and their responses by visiting
71
- them:
72
-
73
- ```
74
- {Django Site}/.well-known/acme-challenge/challenge_text
75
- ```
76
-
77
- 7. Enjoy your easy to manage `ACME Challenges` inside your Django project!
78
-
79
- # Example Project
80
-
81
- If you would like a demo of how to use this application simply clone this project's
82
- `git` repository from [GitHub](https://github.com/urda/django-letsencrypt),
83
- take a moment to read the `README.md` file within the
84
- [`example_project`](https://github.com/urda/django-letsencrypt/tree/master/example_project)
85
- directory, and follow the directions. That will spin up a small sample django
86
- application already configured for you to try out.
87
-
88
- Platform: UNKNOWN
89
- Classifier: Development Status :: 5 - Production/Stable
90
- Classifier: Environment :: Web Environment
91
- Classifier: Framework :: Django
92
- Classifier: Framework :: Django :: 2.2
93
- Classifier: Framework :: Django :: 3.0
94
- Classifier: Framework :: Django :: 3.1
95
- Classifier: Intended Audience :: Developers
96
- Classifier: License :: OSI Approved :: Apache Software License
97
- Classifier: Natural Language :: English
98
- Classifier: Operating System :: OS Independent
99
- Classifier: Programming Language :: Python
100
- Classifier: Programming Language :: Python :: 3
101
- Classifier: Programming Language :: Python :: 3.6
102
- Classifier: Programming Language :: Python :: 3.7
103
- Classifier: Programming Language :: Python :: 3.8
104
- Classifier: Programming Language :: Python :: 3 :: Only
105
- Classifier: Topic :: Internet
106
- Classifier: Topic :: Internet :: WWW/HTTP
107
- Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
108
- Requires-Python: >=3.6, <4
109
- Description-Content-Type: text/markdown
@@ -1,2 +0,0 @@
1
- Django>=2.2.16
2
- pytz>=2020.1