auth 1.2.0__tar.gz → 1.2.1__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 (71) hide show
  1. {auth-1.2.0 → auth-1.2.1}/PKG-INFO +3 -1
  2. {auth-1.2.0 → auth-1.2.1}/auth.egg-info/PKG-INFO +3 -1
  3. {auth-1.2.0 → auth-1.2.1}/auth.egg-info/requires.txt +2 -0
  4. {auth-1.2.0 → auth-1.2.1}/pyproject.toml +3 -1
  5. {auth-1.2.0 → auth-1.2.1}/LICENSE +0 -0
  6. {auth-1.2.0 → auth-1.2.1}/README.rst +0 -0
  7. {auth-1.2.0 → auth-1.2.1}/auth/__init__.py +0 -0
  8. {auth-1.2.0 → auth-1.2.1}/auth/audit.py +0 -0
  9. {auth-1.2.0 → auth-1.2.1}/auth/circuit_breaker.py +0 -0
  10. {auth-1.2.0 → auth-1.2.1}/auth/client.py +0 -0
  11. {auth-1.2.0 → auth-1.2.1}/auth/cmd/__init__.py +0 -0
  12. {auth-1.2.0 → auth-1.2.1}/auth/cmd/server.py +0 -0
  13. {auth-1.2.0 → auth-1.2.1}/auth/config.py +0 -0
  14. {auth-1.2.0 → auth-1.2.1}/auth/core/REST/__init__.py +0 -0
  15. {auth-1.2.0 → auth-1.2.1}/auth/core/REST/client.py +0 -0
  16. {auth-1.2.0 → auth-1.2.1}/auth/core/__init__.py +0 -0
  17. {auth-1.2.0 → auth-1.2.1}/auth/core/models/__init__.py +0 -0
  18. {auth-1.2.0 → auth-1.2.1}/auth/dal/authorization_sqlite.py +0 -0
  19. {auth-1.2.0 → auth-1.2.1}/auth/database.py +0 -0
  20. {auth-1.2.0 → auth-1.2.1}/auth/decorators.py +0 -0
  21. {auth-1.2.0 → auth-1.2.1}/auth/encryption.py +0 -0
  22. {auth-1.2.0 → auth-1.2.1}/auth/jwt_auth.py +0 -0
  23. {auth-1.2.0 → auth-1.2.1}/auth/logging_config.py +0 -0
  24. {auth-1.2.0 → auth-1.2.1}/auth/main.py +0 -0
  25. {auth-1.2.0 → auth-1.2.1}/auth/models/sql.py +0 -0
  26. {auth-1.2.0 → auth-1.2.1}/auth/models/sqlite.py +0 -0
  27. {auth-1.2.0 → auth-1.2.1}/auth/response_format.py +0 -0
  28. {auth-1.2.0 → auth-1.2.1}/auth/routes.py +0 -0
  29. {auth-1.2.0 → auth-1.2.1}/auth/sanitizer.py +0 -0
  30. {auth-1.2.0 → auth-1.2.1}/auth/server.py +0 -0
  31. {auth-1.2.0 → auth-1.2.1}/auth/services/rest_service.py +0 -0
  32. {auth-1.2.0 → auth-1.2.1}/auth/services/service.py +0 -0
  33. {auth-1.2.0 → auth-1.2.1}/auth/validation.py +0 -0
  34. {auth-1.2.0 → auth-1.2.1}/auth/workflow_checker.py +0 -0
  35. {auth-1.2.0 → auth-1.2.1}/auth.egg-info/SOURCES.txt +0 -0
  36. {auth-1.2.0 → auth-1.2.1}/auth.egg-info/dependency_links.txt +0 -0
  37. {auth-1.2.0 → auth-1.2.1}/auth.egg-info/entry_points.txt +0 -0
  38. {auth-1.2.0 → auth-1.2.1}/auth.egg-info/top_level.txt +0 -0
  39. {auth-1.2.0 → auth-1.2.1}/docs/api/authorization.rst +0 -0
  40. {auth-1.2.0 → auth-1.2.1}/docs/api/client.rst +0 -0
  41. {auth-1.2.0 → auth-1.2.1}/docs/api/database.rst +0 -0
  42. {auth-1.2.0 → auth-1.2.1}/docs/api/models.rst +0 -0
  43. {auth-1.2.0 → auth-1.2.1}/docs/api/service.rst +0 -0
  44. {auth-1.2.0 → auth-1.2.1}/docs/audit_logging.rst +0 -0
  45. {auth-1.2.0 → auth-1.2.1}/docs/changelog.rst +0 -0
  46. {auth-1.2.0 → auth-1.2.1}/docs/concepts.rst +0 -0
  47. {auth-1.2.0 → auth-1.2.1}/docs/conf.py +0 -0
  48. {auth-1.2.0 → auth-1.2.1}/docs/configuration.rst +0 -0
  49. {auth-1.2.0 → auth-1.2.1}/docs/contributing.rst +0 -0
  50. {auth-1.2.0 → auth-1.2.1}/docs/deployment.rst +0 -0
  51. {auth-1.2.0 → auth-1.2.1}/docs/encryption.rst +0 -0
  52. {auth-1.2.0 → auth-1.2.1}/docs/examples.rst +0 -0
  53. {auth-1.2.0 → auth-1.2.1}/docs/index.rst +0 -0
  54. {auth-1.2.0 → auth-1.2.1}/docs/installation.rst +0 -0
  55. {auth-1.2.0 → auth-1.2.1}/docs/production.rst +0 -0
  56. {auth-1.2.0 → auth-1.2.1}/docs/python_usage.rst +0 -0
  57. {auth-1.2.0 → auth-1.2.1}/docs/quickstart.rst +0 -0
  58. {auth-1.2.0 → auth-1.2.1}/docs/rest_api.rst +0 -0
  59. {auth-1.2.0 → auth-1.2.1}/docs/security.rst +0 -0
  60. {auth-1.2.0 → auth-1.2.1}/docs/troubleshooting.rst +0 -0
  61. {auth-1.2.0 → auth-1.2.1}/scripts/create_db.py +0 -0
  62. {auth-1.2.0 → auth-1.2.1}/setup.cfg +0 -0
  63. {auth-1.2.0 → auth-1.2.1}/tests/test_auth_sqlite.py +0 -0
  64. {auth-1.2.0 → auth-1.2.1}/tests/test_authorization_sqlite.py +0 -0
  65. {auth-1.2.0 → auth-1.2.1}/tests/test_client_rest.py +0 -0
  66. {auth-1.2.0 → auth-1.2.1}/tests/test_cmd_server.py +0 -0
  67. {auth-1.2.0 → auth-1.2.1}/tests/test_db_sqlite.py +0 -0
  68. {auth-1.2.0 → auth-1.2.1}/tests/test_flask.py +0 -0
  69. {auth-1.2.0 → auth-1.2.1}/tests/test_server.py +0 -0
  70. {auth-1.2.0 → auth-1.2.1}/tests/test_service_rest.py +0 -0
  71. {auth-1.2.0 → auth-1.2.1}/tests/tests.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: auth
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Authorization for humans
5
5
  Author-email: Farshid Ashouri <farsheed.ashouri@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -33,6 +33,8 @@ Requires-Dist: PyJWT>=2.0.0
33
33
  Requires-Dist: cryptography>=3.0.0
34
34
  Requires-Dist: APScheduler>=3.0.0
35
35
  Requires-Dist: psycopg[binary]>=3.0.0
36
+ Requires-Dist: pydantic>=2.0.0
37
+ Requires-Dist: pydantic-settings>=2.0.0
36
38
  Provides-Extra: dev
37
39
  Requires-Dist: pytest>=6.0; extra == "dev"
38
40
  Requires-Dist: pytest-cov>=2.0; extra == "dev"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: auth
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Authorization for humans
5
5
  Author-email: Farshid Ashouri <farsheed.ashouri@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -33,6 +33,8 @@ Requires-Dist: PyJWT>=2.0.0
33
33
  Requires-Dist: cryptography>=3.0.0
34
34
  Requires-Dist: APScheduler>=3.0.0
35
35
  Requires-Dist: psycopg[binary]>=3.0.0
36
+ Requires-Dist: pydantic>=2.0.0
37
+ Requires-Dist: pydantic-settings>=2.0.0
36
38
  Provides-Extra: dev
37
39
  Requires-Dist: pytest>=6.0; extra == "dev"
38
40
  Requires-Dist: pytest-cov>=2.0; extra == "dev"
@@ -6,6 +6,8 @@ PyJWT>=2.0.0
6
6
  cryptography>=3.0.0
7
7
  APScheduler>=3.0.0
8
8
  psycopg[binary]>=3.0.0
9
+ pydantic>=2.0.0
10
+ pydantic-settings>=2.0.0
9
11
 
10
12
  [dev]
11
13
  pytest>=6.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "auth"
7
- version = "1.2.0"
7
+ version = "1.2.1"
8
8
  description = "Authorization for humans"
9
9
  readme = {file = "README.rst", content-type = "text/x-rst"}
10
10
  requires-python = ">=3.9"
@@ -41,6 +41,8 @@ dependencies = [
41
41
  "cryptography>=3.0.0",
42
42
  "APScheduler>=3.0.0",
43
43
  "psycopg[binary]>=3.0.0",
44
+ "pydantic>=2.0.0",
45
+ "pydantic-settings>=2.0.0",
44
46
  ]
45
47
 
46
48
  [project.optional-dependencies]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes