dmart 0.1.2__tar.gz → 0.1.3__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 (124) hide show
  1. {dmart-0.1.2/dmart.egg-info → dmart-0.1.3}/PKG-INFO +2 -1
  2. {dmart-0.1.2 → dmart-0.1.3/dmart.egg-info}/PKG-INFO +2 -1
  3. {dmart-0.1.2 → dmart-0.1.3}/dmart.egg-info/requires.txt +1 -0
  4. {dmart-0.1.2 → dmart-0.1.3}/setup.py +1 -1
  5. {dmart-0.1.2 → dmart-0.1.3}/.ruff.toml +0 -0
  6. {dmart-0.1.2 → dmart-0.1.3}/MANIFEST.in +0 -0
  7. {dmart-0.1.2 → dmart-0.1.3}/alembic/__init__.py +0 -0
  8. {dmart-0.1.2 → dmart-0.1.3}/alembic/env.py +0 -0
  9. {dmart-0.1.2 → dmart-0.1.3}/api/__init__.py +0 -0
  10. {dmart-0.1.2 → dmart-0.1.3}/api/info/__init__.py +0 -0
  11. {dmart-0.1.2 → dmart-0.1.3}/api/info/router.py +0 -0
  12. {dmart-0.1.2 → dmart-0.1.3}/api/managed/__init__.py +0 -0
  13. {dmart-0.1.2 → dmart-0.1.3}/api/managed/router.py +0 -0
  14. {dmart-0.1.2 → dmart-0.1.3}/api/managed/utils.py +0 -0
  15. {dmart-0.1.2 → dmart-0.1.3}/api/public/__init__.py +0 -0
  16. {dmart-0.1.2 → dmart-0.1.3}/api/public/router.py +0 -0
  17. {dmart-0.1.2 → dmart-0.1.3}/api/qr/__init__.py +0 -0
  18. {dmart-0.1.2 → dmart-0.1.3}/api/qr/router.py +0 -0
  19. {dmart-0.1.2 → dmart-0.1.3}/api/user/__init__.py +0 -0
  20. {dmart-0.1.2 → dmart-0.1.3}/api/user/router.py +0 -0
  21. {dmart-0.1.2 → dmart-0.1.3}/api/user/service.py +0 -0
  22. {dmart-0.1.2 → dmart-0.1.3}/bundler.py +0 -0
  23. {dmart-0.1.2 → dmart-0.1.3}/config/__init__.py +0 -0
  24. {dmart-0.1.2 → dmart-0.1.3}/config/channels.json +0 -0
  25. {dmart-0.1.2 → dmart-0.1.3}/config/notification.json +0 -0
  26. {dmart-0.1.2 → dmart-0.1.3}/config.env.sample +0 -0
  27. {dmart-0.1.2 → dmart-0.1.3}/curl.sh +0 -0
  28. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/__init__.py +0 -0
  29. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/adapter.py +0 -0
  30. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/base_data_adapter.py +0 -0
  31. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/file/__init__.py +0 -0
  32. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/file/adapter.py +0 -0
  33. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/file/adapter_helpers.py +0 -0
  34. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/file/archive.py +0 -0
  35. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/file/create_index.py +0 -0
  36. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/file/create_users_folders.py +0 -0
  37. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/file/custom_validations.py +0 -0
  38. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/file/drop_index.py +0 -0
  39. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/file/health_check.py +0 -0
  40. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/file/redis_services.py +0 -0
  41. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/helpers.py +0 -0
  42. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/sql/__init__.py +0 -0
  43. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/sql/adapter.py +0 -0
  44. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/sql/adapter_helpers.py +0 -0
  45. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/sql/create_tables.py +0 -0
  46. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/sql/create_users_folders.py +0 -0
  47. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/sql/db_to_json_migration.py +0 -0
  48. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/sql/health_check_sql.py +0 -0
  49. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/sql/json_to_db_migration.py +0 -0
  50. {dmart-0.1.2 → dmart-0.1.3}/data_adapters/sql/update_query_policies.py +0 -0
  51. {dmart-0.1.2 → dmart-0.1.3}/data_generator.py +0 -0
  52. {dmart-0.1.2 → dmart-0.1.3}/dmart.egg-info/SOURCES.txt +0 -0
  53. {dmart-0.1.2 → dmart-0.1.3}/dmart.egg-info/dependency_links.txt +0 -0
  54. {dmart-0.1.2 → dmart-0.1.3}/dmart.egg-info/entry_points.txt +0 -0
  55. {dmart-0.1.2 → dmart-0.1.3}/dmart.egg-info/top_level.txt +0 -0
  56. {dmart-0.1.2 → dmart-0.1.3}/dmart.py +0 -0
  57. {dmart-0.1.2 → dmart-0.1.3}/get_settings.py +0 -0
  58. {dmart-0.1.2 → dmart-0.1.3}/hypercorn_config.toml +0 -0
  59. {dmart-0.1.2 → dmart-0.1.3}/languages/__init__.py +0 -0
  60. {dmart-0.1.2 → dmart-0.1.3}/languages/arabic.json +0 -0
  61. {dmart-0.1.2 → dmart-0.1.3}/languages/english.json +0 -0
  62. {dmart-0.1.2 → dmart-0.1.3}/languages/kurdish.json +0 -0
  63. {dmart-0.1.2 → dmart-0.1.3}/languages/loader.py +0 -0
  64. {dmart-0.1.2 → dmart-0.1.3}/login_creds.sh +0 -0
  65. {dmart-0.1.2 → dmart-0.1.3}/login_creds.sh.sample +0 -0
  66. {dmart-0.1.2 → dmart-0.1.3}/main.py +0 -0
  67. {dmart-0.1.2 → dmart-0.1.3}/manifest.sh +0 -0
  68. {dmart-0.1.2 → dmart-0.1.3}/migrate.py +0 -0
  69. {dmart-0.1.2 → dmart-0.1.3}/models/__init__.py +0 -0
  70. {dmart-0.1.2 → dmart-0.1.3}/models/api.py +0 -0
  71. {dmart-0.1.2 → dmart-0.1.3}/models/core.py +0 -0
  72. {dmart-0.1.2 → dmart-0.1.3}/models/enums.py +0 -0
  73. {dmart-0.1.2 → dmart-0.1.3}/password_gen.py +0 -0
  74. {dmart-0.1.2 → dmart-0.1.3}/plugins/__init__.py +0 -0
  75. {dmart-0.1.2 → dmart-0.1.3}/publish.sh +0 -0
  76. {dmart-0.1.2 → dmart-0.1.3}/pylint.sh +0 -0
  77. {dmart-0.1.2 → dmart-0.1.3}/pyrightconfig.json +0 -0
  78. {dmart-0.1.2 → dmart-0.1.3}/pytests/__init__.py +0 -0
  79. {dmart-0.1.2 → dmart-0.1.3}/pytests/api_user_models_erros_test.py +0 -0
  80. {dmart-0.1.2 → dmart-0.1.3}/pytests/api_user_models_requests_test.py +0 -0
  81. {dmart-0.1.2 → dmart-0.1.3}/pytests/archive_test.py +0 -0
  82. {dmart-0.1.2 → dmart-0.1.3}/pytests/base_test.py +0 -0
  83. {dmart-0.1.2 → dmart-0.1.3}/pytests/get_settings_test.py +0 -0
  84. {dmart-0.1.2 → dmart-0.1.3}/pytests/json_to_db_migration_test.py +0 -0
  85. {dmart-0.1.2 → dmart-0.1.3}/pytests/service_test.py +0 -0
  86. {dmart-0.1.2 → dmart-0.1.3}/pytests/test_info.py +0 -0
  87. {dmart-0.1.2 → dmart-0.1.3}/pytests/test_status.py +0 -0
  88. {dmart-0.1.2 → dmart-0.1.3}/redis_connections.sh +0 -0
  89. {dmart-0.1.2 → dmart-0.1.3}/reload.sh +0 -0
  90. {dmart-0.1.2 → dmart-0.1.3}/run.sh +0 -0
  91. {dmart-0.1.2 → dmart-0.1.3}/run_notification_campaign.py +0 -0
  92. {dmart-0.1.2 → dmart-0.1.3}/scheduled_notification_handler.py +0 -0
  93. {dmart-0.1.2 → dmart-0.1.3}/schema_migration.py +0 -0
  94. {dmart-0.1.2 → dmart-0.1.3}/schema_modulate.py +0 -0
  95. {dmart-0.1.2 → dmart-0.1.3}/set_admin_passwd.py +0 -0
  96. {dmart-0.1.2 → dmart-0.1.3}/setup.cfg +0 -0
  97. {dmart-0.1.2 → dmart-0.1.3}/sync.py +0 -0
  98. {dmart-0.1.2 → dmart-0.1.3}/utils/__init__.py +0 -0
  99. {dmart-0.1.2 → dmart-0.1.3}/utils/access_control.py +0 -0
  100. {dmart-0.1.2 → dmart-0.1.3}/utils/async_request.py +0 -0
  101. {dmart-0.1.2 → dmart-0.1.3}/utils/exporter.py +0 -0
  102. {dmart-0.1.2 → dmart-0.1.3}/utils/firebase_notifier.py +0 -0
  103. {dmart-0.1.2 → dmart-0.1.3}/utils/generate_email.py +0 -0
  104. {dmart-0.1.2 → dmart-0.1.3}/utils/helpers.py +0 -0
  105. {dmart-0.1.2 → dmart-0.1.3}/utils/hypercorn_config.py +0 -0
  106. {dmart-0.1.2 → dmart-0.1.3}/utils/internal_error_code.py +0 -0
  107. {dmart-0.1.2 → dmart-0.1.3}/utils/jwt.py +0 -0
  108. {dmart-0.1.2 → dmart-0.1.3}/utils/logger.py +0 -0
  109. {dmart-0.1.2 → dmart-0.1.3}/utils/middleware.py +0 -0
  110. {dmart-0.1.2 → dmart-0.1.3}/utils/notification.py +0 -0
  111. {dmart-0.1.2 → dmart-0.1.3}/utils/password_hashing.py +0 -0
  112. {dmart-0.1.2 → dmart-0.1.3}/utils/plugin_manager.py +0 -0
  113. {dmart-0.1.2 → dmart-0.1.3}/utils/query_policies_helper.py +0 -0
  114. {dmart-0.1.2 → dmart-0.1.3}/utils/regex.py +0 -0
  115. {dmart-0.1.2 → dmart-0.1.3}/utils/repository.py +0 -0
  116. {dmart-0.1.2 → dmart-0.1.3}/utils/router_helper.py +0 -0
  117. {dmart-0.1.2 → dmart-0.1.3}/utils/settings.py +0 -0
  118. {dmart-0.1.2 → dmart-0.1.3}/utils/sms_notifier.py +0 -0
  119. {dmart-0.1.2 → dmart-0.1.3}/utils/social_sso.py +0 -0
  120. {dmart-0.1.2 → dmart-0.1.3}/utils/templates/activation.html.j2 +0 -0
  121. {dmart-0.1.2 → dmart-0.1.3}/utils/templates/reminder.html.j2 +0 -0
  122. {dmart-0.1.2 → dmart-0.1.3}/utils/ticket_sys_utils.py +0 -0
  123. {dmart-0.1.2 → dmart-0.1.3}/utils/web_notifier.py +0 -0
  124. {dmart-0.1.2 → dmart-0.1.3}/websocket.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dmart
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: fastapi
6
6
  Requires-Dist: pydantic
@@ -24,6 +24,7 @@ Requires-Dist: greenlet
24
24
  Requires-Dist: alembic
25
25
  Requires-Dist: jinja2
26
26
  Requires-Dist: pytest-cov
27
+ Requires-Dist: argon2
27
28
  Requires-Dist: argon2-cffi
28
29
  Requires-Dist: orjson
29
30
  Provides-Extra: extra
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dmart
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: fastapi
6
6
  Requires-Dist: pydantic
@@ -24,6 +24,7 @@ Requires-Dist: greenlet
24
24
  Requires-Dist: alembic
25
25
  Requires-Dist: jinja2
26
26
  Requires-Dist: pytest-cov
27
+ Requires-Dist: argon2
27
28
  Requires-Dist: argon2-cffi
28
29
  Requires-Dist: orjson
29
30
  Provides-Extra: extra
@@ -20,6 +20,7 @@ greenlet
20
20
  alembic
21
21
  jinja2
22
22
  pytest-cov
23
+ argon2
23
24
  argon2-cffi
24
25
  orjson
25
26
 
@@ -16,7 +16,7 @@ plugins_requires = parse_requirements('requirements/plugins.txt')
16
16
 
17
17
  setup(
18
18
  name="dmart",
19
- version="0.1.2",
19
+ version="0.1.3",
20
20
  packages=find_packages(),
21
21
  py_modules=["dmart", "main", "sync", "bundler", "migrate", "password_gen", "get_settings", "data_generator", "schema_modulate", "schema_migration", "set_admin_passwd", "run_notification_campaign", "scheduled_notification_handler", "websocket"],
22
22
  install_requires=install_requires,
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
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