square-authentication 10.0.4__tar.gz → 10.0.5__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 (41) hide show
  1. {square_authentication-10.0.4 → square_authentication-10.0.5}/.github/workflows/pytest.yaml +1 -1
  2. {square_authentication-10.0.4 → square_authentication-10.0.5}/CHANGELOG.md +5 -0
  3. {square_authentication-10.0.4 → square_authentication-10.0.5}/PKG-INFO +5 -2
  4. {square_authentication-10.0.4 → square_authentication-10.0.5}/pyproject.toml +2 -2
  5. {square_authentication-10.0.4 → square_authentication-10.0.5}/.github/workflows/docker-build-publish.yaml +0 -0
  6. {square_authentication-10.0.4 → square_authentication-10.0.5}/.github/workflows/pypi-publish.yaml +0 -0
  7. {square_authentication-10.0.4 → square_authentication-10.0.5}/.gitignore +0 -0
  8. {square_authentication-10.0.4 → square_authentication-10.0.5}/Dockerfile +0 -0
  9. {square_authentication-10.0.4 → square_authentication-10.0.5}/LICENSE +0 -0
  10. {square_authentication-10.0.4 → square_authentication-10.0.5}/README.md +0 -0
  11. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/__init__.py +0 -0
  12. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/configuration.py +0 -0
  13. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/data/config.sample.ini +0 -0
  14. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/data/config.testing.sample.ini +0 -0
  15. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/main.py +0 -0
  16. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/messages.py +0 -0
  17. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/pydantic_models/__init__.py +0 -0
  18. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/pydantic_models/core.py +0 -0
  19. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/pydantic_models/profile.py +0 -0
  20. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/routes/__init__.py +0 -0
  21. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/routes/core.py +0 -0
  22. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/routes/profile.py +0 -0
  23. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/routes/utility.py +0 -0
  24. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/utils/__init__.py +0 -0
  25. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/utils/core.py +0 -0
  26. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/utils/encryption.py +0 -0
  27. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/utils/routes/__init__.py +0 -0
  28. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/utils/routes/core.py +0 -0
  29. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/utils/routes/profile.py +0 -0
  30. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/utils/routes/utility.py +0 -0
  31. {square_authentication-10.0.4 → square_authentication-10.0.5}/square_authentication/utils/token.py +0 -0
  32. {square_authentication-10.0.4 → square_authentication-10.0.5}/tests/conftest.py +0 -0
  33. {square_authentication-10.0.4 → square_authentication-10.0.5}/tests/test_1.py +0 -0
  34. {square_authentication-10.0.4 → square_authentication-10.0.5}/tests/test_authentication.py +0 -0
  35. {square_authentication-10.0.4 → square_authentication-10.0.5}/tests/test_delete_user.py +0 -0
  36. {square_authentication-10.0.4 → square_authentication-10.0.5}/tests/test_email_verification.py +0 -0
  37. {square_authentication-10.0.4 → square_authentication-10.0.5}/tests/test_login.py +0 -0
  38. {square_authentication-10.0.4 → square_authentication-10.0.5}/tests/test_profile_management.py +0 -0
  39. {square_authentication-10.0.4 → square_authentication-10.0.5}/tests/test_token_management.py +0 -0
  40. {square_authentication-10.0.4 → square_authentication-10.0.5}/tests/test_update_profile.py +0 -0
  41. {square_authentication-10.0.4 → square_authentication-10.0.5}/tests/test_username.py +0 -0
@@ -23,7 +23,7 @@ jobs:
23
23
  - name: Install dependencies
24
24
  run: |
25
25
  python -m pip install --upgrade pip
26
- pip install .
26
+ pip install .["all"]
27
27
 
28
28
  - name: Run tests
29
29
  run: pytest
@@ -1,5 +1,10 @@
1
1
  # changelog
2
2
 
3
+ ## v10.0.5
4
+
5
+ - dependencies
6
+ - create all and dev sections for pytest dependencies.
7
+
3
8
  ## v10.0.4
4
9
 
5
10
  - remove setup.py and switch to pyproject.toml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: square_authentication
3
- Version: 10.0.4
3
+ Version: 10.0.5
4
4
  Summary: authentication layer for my personal server.
5
5
  Project-URL: homepage, https://github.com/thepmsquare/square_authentication
6
6
  Author-email: Parth Mukesh Mangtani <thepmsquare@gmail.com>
@@ -26,7 +26,6 @@ Requires-Dist: google-auth>=2.40.3
26
26
  Requires-Dist: httpx>=0.27.2
27
27
  Requires-Dist: pydantic>=2.5.3
28
28
  Requires-Dist: pyjwt>=2.8.0
29
- Requires-Dist: pytest>=8.0.0
30
29
  Requires-Dist: python-multipart>=0.0.6
31
30
  Requires-Dist: requests>=2.32.3
32
31
  Requires-Dist: square-commons>=3.0.0
@@ -35,6 +34,10 @@ Requires-Dist: square-database-structure>=2.6.0
35
34
  Requires-Dist: square-file-store-helper>=3.0.0
36
35
  Requires-Dist: square-logger>=3.0.0
37
36
  Requires-Dist: uvicorn>=0.24.0.post1
37
+ Provides-Extra: all
38
+ Requires-Dist: pytest>=8.3.3; extra == 'all'
39
+ Provides-Extra: dev
40
+ Requires-Dist: pytest>=8.3.3; extra == 'dev'
38
41
  Description-Content-Type: text/markdown
39
42
 
40
43
  # square_authentication
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "square_authentication"
7
- version = "10.0.4"
7
+ version = "10.0.5"
8
8
  description = "authentication layer for my personal server."
9
9
  readme = "README.md"
10
10
  readme-content-type = "text/markdown"
@@ -29,10 +29,10 @@ dependencies = [
29
29
  "square_database_helper>=2.6.1",
30
30
  "square_database_structure>=2.6.0",
31
31
  "square_file_store_helper>=3.0.0",
32
- "pytest>=8.0.0",
33
32
  "httpx>=0.27.2",
34
33
  "google-auth>=2.40.3",
35
34
  ]
35
+ optional-dependencies = { all = ["pytest>=8.3.3"], dev = ["pytest>=8.3.3"] }
36
36
  classifiers = [
37
37
  "Development Status :: 3 - Alpha",
38
38
  "Intended Audience :: Developers",