django-resonant-settings 0.40.0__py3-none-any.whl → 0.41.0__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.
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-resonant-settings
3
- Version: 0.40.0
3
+ Version: 0.41.0
4
4
  Summary: Shared Django settings for Resonant applications.
5
5
  Project-URL: Repository, https://github.com/kitware-resonant/cookiecutter-resonant
6
6
  Project-URL: Bug Reports, https://github.com/kitware-resonant/cookiecutter-resonant/issues
7
7
  Maintainer-email: "Kitware, Inc." <kitware@kitware.com>
8
8
  License-Expression: Apache-2.0
9
9
  License-File: LICENSE
10
+ License-File: NOTICE
10
11
  Keywords: django,resonant,setting,settings
11
12
  Classifier: Development Status :: 3 - Alpha
12
13
  Classifier: Environment :: Web Environment
@@ -22,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.10
22
23
  Classifier: Programming Language :: Python :: 3.11
23
24
  Classifier: Programming Language :: Python :: 3.12
24
25
  Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
25
27
  Requires-Python: >=3.10
26
28
  Requires-Dist: django-environ
27
29
  Provides-Extra: allauth
@@ -21,9 +21,10 @@ resonant_settings/development/debug_toolbar.py,sha256=GhIMbjYsHjiRhrRF6qhYwg-f4g
21
21
  resonant_settings/development/minio_storage.py,sha256=4FIC3ZHyfej8IgbSgylFqXOcNx_-_sTUlCoBZLkeLYs,1002
22
22
  resonant_settings/production/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  resonant_settings/production/email.py,sha256=EQJ7f9jhcu4NxnBa1Wo0gs7JFqaUB87_ETHbVdUo8HY,623
24
- resonant_settings/production/https.py,sha256=X0bP_k2Y2axvg7CaWoZBYb9cuvVpfUyNtk4DPSfJRR8,865
25
- resonant_settings/production/s3_storage.py,sha256=K60ygThFVuciJW4lVIPY6RAJ-eaKgNzgnqpTHbkCNTM,1215
26
- django_resonant_settings-0.40.0.dist-info/METADATA,sha256=AXaoyYLBJTHdyNW3ZnCKNz12tZ5MMLG7Be6BlV7XiM4,1720
27
- django_resonant_settings-0.40.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
28
- django_resonant_settings-0.40.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
29
- django_resonant_settings-0.40.0.dist-info/RECORD,,
24
+ resonant_settings/production/https.py,sha256=WeWLXoV1Z3vsZNuXLHClm_Ea5_yD8d9BBFdg9qHlhjc,695
25
+ resonant_settings/production/s3_storage.py,sha256=50LEgNAVt9pZUT6y0INiQEaGxPpl-aScESC2GobpY4k,1215
26
+ django_resonant_settings-0.41.0.dist-info/METADATA,sha256=YuSJfeiaDhgvA5kR0Rez7obS074QIldDuoGgs0wufGw,1792
27
+ django_resonant_settings-0.41.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
28
+ django_resonant_settings-0.41.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
29
+ django_resonant_settings-0.41.0.dist-info/licenses/NOTICE,sha256=NU8vSqFl-Z30QJ2VOCAkStAVQon47sNgE3wwz-7nQSo,585
30
+ django_resonant_settings-0.41.0.dist-info/RECORD,,
@@ -0,0 +1,13 @@
1
+ Copyright 2020 Kitware, Inc.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ See accompanying LICENSE file. You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -4,10 +4,6 @@ from datetime import timedelta
4
4
 
5
5
  SECURE_SSL_REDIRECT = True
6
6
 
7
- # This needs to be set by the HTTPS terminating reverse proxy.
8
- # Heroku and Render automatically set this.
9
- SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https")
10
-
11
7
  SESSION_COOKIE_SECURE = True
12
8
  CSRF_COOKIE_SECURE = True
13
9
 
@@ -23,7 +23,7 @@ AWS_S3_SECRET_ACCESS_KEY: str = env.str("AWS_SECRET_ACCESS_KEY")
23
23
  AWS_STORAGE_BUCKET_NAME: str = env.str("DJANGO_STORAGE_BUCKET_NAME")
24
24
 
25
25
  # It's critical to use the v4 signature;
26
- # it isn't the upstream default only for backwards compatability reasons.
26
+ # it isn't the upstream default only for backwards compatibility reasons.
27
27
  AWS_S3_SIGNATURE_VERSION = "s3v4"
28
28
 
29
29
  AWS_S3_MAX_MEMORY_SIZE = 5 * 1024 * 1024