cms-jwt 0.2.0__tar.gz → 0.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.
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cms-jwt
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Requires-Python: >=3.10
5
5
  Dynamic: requires-python
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cms-jwt
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Requires-Python: >=3.10
5
5
  Dynamic: requires-python
@@ -7,4 +7,7 @@ cms_jwt.egg-info/top_level.txt
7
7
  cms_jwt_import_auth/__init__.py
8
8
  cms_jwt_import_auth/apps.py
9
9
  cms_jwt_import_auth/bkp_tutor.py
10
- cms_jwt_import_auth/middleware.py
10
+ cms_jwt_import_auth/middleware.py
11
+ cms_jwt_import_auth/settings/__init__.py
12
+ cms_jwt_import_auth/settings/common.py
13
+ cms_jwt_import_auth/settings/production.py
File without changes
@@ -0,0 +1,4 @@
1
+ def plugin_settings(settings):
2
+ settings.MIDDLEWARE+=[
3
+ "cms_jwt_import_auth.middleware.ImportJWTOrSessionMiddleware",
4
+ ]
@@ -0,0 +1,5 @@
1
+ def plugin_settings(settings):
2
+ settings.MIDDLEWARE+=[
3
+ "cms_jwt_import_auth.middleware.ImportJWTOrSessionMiddleware",
4
+ ]
5
+
@@ -6,9 +6,9 @@ Setup file for eox_core Django plugin.
6
6
  import os
7
7
  import re
8
8
 
9
- from setuptools import setup
9
+ from setuptools import setup,find_packages
10
10
 
11
- VERSION = "0.2.0"
11
+ VERSION = "0.3.0"
12
12
 
13
13
 
14
14
 
@@ -17,7 +17,7 @@ setup(
17
17
  python_requires='>=3.10',
18
18
  version=VERSION,
19
19
 
20
- packages=['cms_jwt_import_auth'],
20
+ packages=find_packages(),
21
21
  include_package_data=True,
22
22
  entry_points={
23
23
  "cms.djangoapp": [
File without changes