square-authentication 4.4.0__tar.gz → 4.5.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.
- {square_authentication-4.4.0 → square_authentication-4.5.0}/PKG-INFO +7 -1
- {square_authentication-4.4.0 → square_authentication-4.5.0}/README.md +6 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/setup.py +3 -1
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication.egg-info/PKG-INFO +7 -1
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication.egg-info/requires.txt +2 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/setup.cfg +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/__init__.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/configuration.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/data/config.ini +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/main.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/messages.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/pydantic_models/__init__.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/pydantic_models/core.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/routes/__init__.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/routes/core.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/routes/utility.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/utils/__init__.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/utils/encryption.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/utils/token.py +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication.egg-info/SOURCES.txt +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication.egg-info/dependency_links.txt +0 -0
- {square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: square_authentication
|
3
|
-
Version: 4.
|
3
|
+
Version: 4.5.0
|
4
4
|
Summary: authentication layer for my personal server.
|
5
5
|
Home-page: https://github.com/thepmsquare/square_authentication
|
6
6
|
Author: thePmSquare
|
@@ -32,6 +32,12 @@ pip install square_authentication
|
|
32
32
|
|
33
33
|
## changelog
|
34
34
|
|
35
|
+
### v4.5.0
|
36
|
+
|
37
|
+
- add pytest dependency and dummy test.
|
38
|
+
- add https dependency.
|
39
|
+
- github actions for CI/CD for testing and auto build and push.
|
40
|
+
|
35
41
|
### v4.4.0
|
36
42
|
|
37
43
|
- core
|
@@ -4,7 +4,7 @@ package_name = "square_authentication"
|
|
4
4
|
|
5
5
|
setup(
|
6
6
|
name=package_name,
|
7
|
-
version="4.
|
7
|
+
version="4.5.0",
|
8
8
|
packages=find_packages(),
|
9
9
|
package_data={
|
10
10
|
package_name: ["data/*"],
|
@@ -21,6 +21,8 @@ setup(
|
|
21
21
|
"square_logger>=1.0.0",
|
22
22
|
"square_database_helper>=2.0.0",
|
23
23
|
"square_database_structure>=1.0.0",
|
24
|
+
"pytest>=8.0.0",
|
25
|
+
"httpx>=0.27.2",
|
24
26
|
],
|
25
27
|
extras_require={},
|
26
28
|
author="thePmSquare",
|
{square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication.egg-info/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: square-authentication
|
3
|
-
Version: 4.
|
3
|
+
Version: 4.5.0
|
4
4
|
Summary: authentication layer for my personal server.
|
5
5
|
Home-page: https://github.com/thepmsquare/square_authentication
|
6
6
|
Author: thePmSquare
|
@@ -32,6 +32,12 @@ pip install square_authentication
|
|
32
32
|
|
33
33
|
## changelog
|
34
34
|
|
35
|
+
### v4.5.0
|
36
|
+
|
37
|
+
- add pytest dependency and dummy test.
|
38
|
+
- add https dependency.
|
39
|
+
- github actions for CI/CD for testing and auto build and push.
|
40
|
+
|
35
41
|
### v4.4.0
|
36
42
|
|
37
43
|
- core
|
File without changes
|
{square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/__init__.py
RENAMED
File without changes
|
{square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/configuration.py
RENAMED
File without changes
|
{square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/data/config.ini
RENAMED
File without changes
|
File without changes
|
{square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/messages.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/routes/__init__.py
RENAMED
File without changes
|
{square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/routes/core.py
RENAMED
File without changes
|
{square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/routes/utility.py
RENAMED
File without changes
|
{square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/utils/__init__.py
RENAMED
File without changes
|
File without changes
|
{square_authentication-4.4.0 → square_authentication-4.5.0}/square_authentication/utils/token.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|