dmart 0.1.1__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 (128) hide show
  1. dmart-0.1.3/PKG-INFO +65 -0
  2. dmart-0.1.3/dmart.egg-info/PKG-INFO +65 -0
  3. dmart-0.1.3/dmart.egg-info/requires.txt +61 -0
  4. dmart-0.1.3/setup.py +35 -0
  5. dmart-0.1.1/PKG-INFO +0 -28
  6. dmart-0.1.1/dmart.egg-info/PKG-INFO +0 -28
  7. dmart-0.1.1/dmart.egg-info/requires.txt +0 -22
  8. dmart-0.1.1/setup.py +0 -39
  9. {dmart-0.1.1 → dmart-0.1.3}/.ruff.toml +0 -0
  10. {dmart-0.1.1 → dmart-0.1.3}/MANIFEST.in +0 -0
  11. {dmart-0.1.1 → dmart-0.1.3}/alembic/__init__.py +0 -0
  12. {dmart-0.1.1 → dmart-0.1.3}/alembic/env.py +0 -0
  13. {dmart-0.1.1 → dmart-0.1.3}/api/__init__.py +0 -0
  14. {dmart-0.1.1 → dmart-0.1.3}/api/info/__init__.py +0 -0
  15. {dmart-0.1.1 → dmart-0.1.3}/api/info/router.py +0 -0
  16. {dmart-0.1.1 → dmart-0.1.3}/api/managed/__init__.py +0 -0
  17. {dmart-0.1.1 → dmart-0.1.3}/api/managed/router.py +0 -0
  18. {dmart-0.1.1 → dmart-0.1.3}/api/managed/utils.py +0 -0
  19. {dmart-0.1.1 → dmart-0.1.3}/api/public/__init__.py +0 -0
  20. {dmart-0.1.1 → dmart-0.1.3}/api/public/router.py +0 -0
  21. {dmart-0.1.1 → dmart-0.1.3}/api/qr/__init__.py +0 -0
  22. {dmart-0.1.1 → dmart-0.1.3}/api/qr/router.py +0 -0
  23. {dmart-0.1.1 → dmart-0.1.3}/api/user/__init__.py +0 -0
  24. {dmart-0.1.1 → dmart-0.1.3}/api/user/router.py +0 -0
  25. {dmart-0.1.1 → dmart-0.1.3}/api/user/service.py +0 -0
  26. {dmart-0.1.1 → dmart-0.1.3}/bundler.py +0 -0
  27. {dmart-0.1.1 → dmart-0.1.3}/config/__init__.py +0 -0
  28. {dmart-0.1.1 → dmart-0.1.3}/config/channels.json +0 -0
  29. {dmart-0.1.1 → dmart-0.1.3}/config/notification.json +0 -0
  30. {dmart-0.1.1 → dmart-0.1.3}/config.env.sample +0 -0
  31. {dmart-0.1.1 → dmart-0.1.3}/curl.sh +0 -0
  32. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/__init__.py +0 -0
  33. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/adapter.py +0 -0
  34. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/base_data_adapter.py +0 -0
  35. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/file/__init__.py +0 -0
  36. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/file/adapter.py +0 -0
  37. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/file/adapter_helpers.py +0 -0
  38. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/file/archive.py +0 -0
  39. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/file/create_index.py +0 -0
  40. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/file/create_users_folders.py +0 -0
  41. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/file/custom_validations.py +0 -0
  42. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/file/drop_index.py +0 -0
  43. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/file/health_check.py +0 -0
  44. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/file/redis_services.py +0 -0
  45. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/helpers.py +0 -0
  46. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/sql/__init__.py +0 -0
  47. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/sql/adapter.py +0 -0
  48. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/sql/adapter_helpers.py +0 -0
  49. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/sql/create_tables.py +0 -0
  50. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/sql/create_users_folders.py +0 -0
  51. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/sql/db_to_json_migration.py +0 -0
  52. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/sql/health_check_sql.py +0 -0
  53. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/sql/json_to_db_migration.py +0 -0
  54. {dmart-0.1.1 → dmart-0.1.3}/data_adapters/sql/update_query_policies.py +0 -0
  55. {dmart-0.1.1 → dmart-0.1.3}/data_generator.py +0 -0
  56. {dmart-0.1.1 → dmart-0.1.3}/dmart.egg-info/SOURCES.txt +0 -0
  57. {dmart-0.1.1 → dmart-0.1.3}/dmart.egg-info/dependency_links.txt +0 -0
  58. {dmart-0.1.1 → dmart-0.1.3}/dmart.egg-info/entry_points.txt +0 -0
  59. {dmart-0.1.1 → dmart-0.1.3}/dmart.egg-info/top_level.txt +0 -0
  60. {dmart-0.1.1 → dmart-0.1.3}/dmart.py +0 -0
  61. {dmart-0.1.1 → dmart-0.1.3}/get_settings.py +0 -0
  62. {dmart-0.1.1 → dmart-0.1.3}/hypercorn_config.toml +0 -0
  63. {dmart-0.1.1 → dmart-0.1.3}/languages/__init__.py +0 -0
  64. {dmart-0.1.1 → dmart-0.1.3}/languages/arabic.json +0 -0
  65. {dmart-0.1.1 → dmart-0.1.3}/languages/english.json +0 -0
  66. {dmart-0.1.1 → dmart-0.1.3}/languages/kurdish.json +0 -0
  67. {dmart-0.1.1 → dmart-0.1.3}/languages/loader.py +0 -0
  68. {dmart-0.1.1 → dmart-0.1.3}/login_creds.sh +0 -0
  69. {dmart-0.1.1 → dmart-0.1.3}/login_creds.sh.sample +0 -0
  70. {dmart-0.1.1 → dmart-0.1.3}/main.py +0 -0
  71. {dmart-0.1.1 → dmart-0.1.3}/manifest.sh +0 -0
  72. {dmart-0.1.1 → dmart-0.1.3}/migrate.py +0 -0
  73. {dmart-0.1.1 → dmart-0.1.3}/models/__init__.py +0 -0
  74. {dmart-0.1.1 → dmart-0.1.3}/models/api.py +0 -0
  75. {dmart-0.1.1 → dmart-0.1.3}/models/core.py +0 -0
  76. {dmart-0.1.1 → dmart-0.1.3}/models/enums.py +0 -0
  77. {dmart-0.1.1 → dmart-0.1.3}/password_gen.py +0 -0
  78. {dmart-0.1.1 → dmart-0.1.3}/plugins/__init__.py +0 -0
  79. {dmart-0.1.1 → dmart-0.1.3}/publish.sh +0 -0
  80. {dmart-0.1.1 → dmart-0.1.3}/pylint.sh +0 -0
  81. {dmart-0.1.1 → dmart-0.1.3}/pyrightconfig.json +0 -0
  82. {dmart-0.1.1 → dmart-0.1.3}/pytests/__init__.py +0 -0
  83. {dmart-0.1.1 → dmart-0.1.3}/pytests/api_user_models_erros_test.py +0 -0
  84. {dmart-0.1.1 → dmart-0.1.3}/pytests/api_user_models_requests_test.py +0 -0
  85. {dmart-0.1.1 → dmart-0.1.3}/pytests/archive_test.py +0 -0
  86. {dmart-0.1.1 → dmart-0.1.3}/pytests/base_test.py +0 -0
  87. {dmart-0.1.1 → dmart-0.1.3}/pytests/get_settings_test.py +0 -0
  88. {dmart-0.1.1 → dmart-0.1.3}/pytests/json_to_db_migration_test.py +0 -0
  89. {dmart-0.1.1 → dmart-0.1.3}/pytests/service_test.py +0 -0
  90. {dmart-0.1.1 → dmart-0.1.3}/pytests/test_info.py +0 -0
  91. {dmart-0.1.1 → dmart-0.1.3}/pytests/test_status.py +0 -0
  92. {dmart-0.1.1 → dmart-0.1.3}/redis_connections.sh +0 -0
  93. {dmart-0.1.1 → dmart-0.1.3}/reload.sh +0 -0
  94. {dmart-0.1.1 → dmart-0.1.3}/run.sh +0 -0
  95. {dmart-0.1.1 → dmart-0.1.3}/run_notification_campaign.py +0 -0
  96. {dmart-0.1.1 → dmart-0.1.3}/scheduled_notification_handler.py +0 -0
  97. {dmart-0.1.1 → dmart-0.1.3}/schema_migration.py +0 -0
  98. {dmart-0.1.1 → dmart-0.1.3}/schema_modulate.py +0 -0
  99. {dmart-0.1.1 → dmart-0.1.3}/set_admin_passwd.py +0 -0
  100. {dmart-0.1.1 → dmart-0.1.3}/setup.cfg +0 -0
  101. {dmart-0.1.1 → dmart-0.1.3}/sync.py +0 -0
  102. {dmart-0.1.1 → dmart-0.1.3}/utils/__init__.py +0 -0
  103. {dmart-0.1.1 → dmart-0.1.3}/utils/access_control.py +0 -0
  104. {dmart-0.1.1 → dmart-0.1.3}/utils/async_request.py +0 -0
  105. {dmart-0.1.1 → dmart-0.1.3}/utils/exporter.py +0 -0
  106. {dmart-0.1.1 → dmart-0.1.3}/utils/firebase_notifier.py +0 -0
  107. {dmart-0.1.1 → dmart-0.1.3}/utils/generate_email.py +0 -0
  108. {dmart-0.1.1 → dmart-0.1.3}/utils/helpers.py +0 -0
  109. {dmart-0.1.1 → dmart-0.1.3}/utils/hypercorn_config.py +0 -0
  110. {dmart-0.1.1 → dmart-0.1.3}/utils/internal_error_code.py +0 -0
  111. {dmart-0.1.1 → dmart-0.1.3}/utils/jwt.py +0 -0
  112. {dmart-0.1.1 → dmart-0.1.3}/utils/logger.py +0 -0
  113. {dmart-0.1.1 → dmart-0.1.3}/utils/middleware.py +0 -0
  114. {dmart-0.1.1 → dmart-0.1.3}/utils/notification.py +0 -0
  115. {dmart-0.1.1 → dmart-0.1.3}/utils/password_hashing.py +0 -0
  116. {dmart-0.1.1 → dmart-0.1.3}/utils/plugin_manager.py +0 -0
  117. {dmart-0.1.1 → dmart-0.1.3}/utils/query_policies_helper.py +0 -0
  118. {dmart-0.1.1 → dmart-0.1.3}/utils/regex.py +0 -0
  119. {dmart-0.1.1 → dmart-0.1.3}/utils/repository.py +0 -0
  120. {dmart-0.1.1 → dmart-0.1.3}/utils/router_helper.py +0 -0
  121. {dmart-0.1.1 → dmart-0.1.3}/utils/settings.py +0 -0
  122. {dmart-0.1.1 → dmart-0.1.3}/utils/sms_notifier.py +0 -0
  123. {dmart-0.1.1 → dmart-0.1.3}/utils/social_sso.py +0 -0
  124. {dmart-0.1.1 → dmart-0.1.3}/utils/templates/activation.html.j2 +0 -0
  125. {dmart-0.1.1 → dmart-0.1.3}/utils/templates/reminder.html.j2 +0 -0
  126. {dmart-0.1.1 → dmart-0.1.3}/utils/ticket_sys_utils.py +0 -0
  127. {dmart-0.1.1 → dmart-0.1.3}/utils/web_notifier.py +0 -0
  128. {dmart-0.1.1 → dmart-0.1.3}/websocket.py +0 -0
dmart-0.1.3/PKG-INFO ADDED
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: dmart
3
+ Version: 0.1.3
4
+ Requires-Python: >=3.10
5
+ Requires-Dist: fastapi
6
+ Requires-Dist: pydantic
7
+ Requires-Dist: pydantic[email]
8
+ Requires-Dist: concurrent-log-handler
9
+ Requires-Dist: hypercorn
10
+ Requires-Dist: pyjwt
11
+ Requires-Dist: redis
12
+ Requires-Dist: aiofiles
13
+ Requires-Dist: aiohttp
14
+ Requires-Dist: python-multipart
15
+ Requires-Dist: jsonschema
16
+ Requires-Dist: email-validator
17
+ Requires-Dist: asgi-correlation-id
18
+ Requires-Dist: pydantic-settings
19
+ Requires-Dist: fastapi-sso
20
+ Requires-Dist: sqlmodel
21
+ Requires-Dist: psycopg[binary]
22
+ Requires-Dist: asyncpg
23
+ Requires-Dist: greenlet
24
+ Requires-Dist: alembic
25
+ Requires-Dist: jinja2
26
+ Requires-Dist: pytest-cov
27
+ Requires-Dist: argon2
28
+ Requires-Dist: argon2-cffi
29
+ Requires-Dist: orjson
30
+ Provides-Extra: extra
31
+ Requires-Dist: jsf; extra == "extra"
32
+ Requires-Dist: types-psutil; extra == "extra"
33
+ Requires-Dist: types-pyinstaller; extra == "extra"
34
+ Requires-Dist: pyinstaller; extra == "extra"
35
+ Requires-Dist: jinja2; extra == "extra"
36
+ Requires-Dist: duckdb; extra == "extra"
37
+ Requires-Dist: segno; extra == "extra"
38
+ Requires-Dist: jq; extra == "extra"
39
+ Provides-Extra: plugins
40
+ Requires-Dist: weasyprint; extra == "plugins"
41
+ Requires-Dist: pypdf; extra == "plugins"
42
+ Requires-Dist: dicttoxml; extra == "plugins"
43
+ Requires-Dist: pdf2image; extra == "plugins"
44
+ Requires-Dist: firebase-admin; extra == "plugins"
45
+ Requires-Dist: pillow; extra == "plugins"
46
+ Requires-Dist: ldap3; extra == "plugins"
47
+ Provides-Extra: all
48
+ Requires-Dist: jsf; extra == "all"
49
+ Requires-Dist: types-psutil; extra == "all"
50
+ Requires-Dist: types-pyinstaller; extra == "all"
51
+ Requires-Dist: pyinstaller; extra == "all"
52
+ Requires-Dist: jinja2; extra == "all"
53
+ Requires-Dist: duckdb; extra == "all"
54
+ Requires-Dist: segno; extra == "all"
55
+ Requires-Dist: jq; extra == "all"
56
+ Requires-Dist: weasyprint; extra == "all"
57
+ Requires-Dist: pypdf; extra == "all"
58
+ Requires-Dist: dicttoxml; extra == "all"
59
+ Requires-Dist: pdf2image; extra == "all"
60
+ Requires-Dist: firebase-admin; extra == "all"
61
+ Requires-Dist: pillow; extra == "all"
62
+ Requires-Dist: ldap3; extra == "all"
63
+ Dynamic: provides-extra
64
+ Dynamic: requires-dist
65
+ Dynamic: requires-python
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: dmart
3
+ Version: 0.1.3
4
+ Requires-Python: >=3.10
5
+ Requires-Dist: fastapi
6
+ Requires-Dist: pydantic
7
+ Requires-Dist: pydantic[email]
8
+ Requires-Dist: concurrent-log-handler
9
+ Requires-Dist: hypercorn
10
+ Requires-Dist: pyjwt
11
+ Requires-Dist: redis
12
+ Requires-Dist: aiofiles
13
+ Requires-Dist: aiohttp
14
+ Requires-Dist: python-multipart
15
+ Requires-Dist: jsonschema
16
+ Requires-Dist: email-validator
17
+ Requires-Dist: asgi-correlation-id
18
+ Requires-Dist: pydantic-settings
19
+ Requires-Dist: fastapi-sso
20
+ Requires-Dist: sqlmodel
21
+ Requires-Dist: psycopg[binary]
22
+ Requires-Dist: asyncpg
23
+ Requires-Dist: greenlet
24
+ Requires-Dist: alembic
25
+ Requires-Dist: jinja2
26
+ Requires-Dist: pytest-cov
27
+ Requires-Dist: argon2
28
+ Requires-Dist: argon2-cffi
29
+ Requires-Dist: orjson
30
+ Provides-Extra: extra
31
+ Requires-Dist: jsf; extra == "extra"
32
+ Requires-Dist: types-psutil; extra == "extra"
33
+ Requires-Dist: types-pyinstaller; extra == "extra"
34
+ Requires-Dist: pyinstaller; extra == "extra"
35
+ Requires-Dist: jinja2; extra == "extra"
36
+ Requires-Dist: duckdb; extra == "extra"
37
+ Requires-Dist: segno; extra == "extra"
38
+ Requires-Dist: jq; extra == "extra"
39
+ Provides-Extra: plugins
40
+ Requires-Dist: weasyprint; extra == "plugins"
41
+ Requires-Dist: pypdf; extra == "plugins"
42
+ Requires-Dist: dicttoxml; extra == "plugins"
43
+ Requires-Dist: pdf2image; extra == "plugins"
44
+ Requires-Dist: firebase-admin; extra == "plugins"
45
+ Requires-Dist: pillow; extra == "plugins"
46
+ Requires-Dist: ldap3; extra == "plugins"
47
+ Provides-Extra: all
48
+ Requires-Dist: jsf; extra == "all"
49
+ Requires-Dist: types-psutil; extra == "all"
50
+ Requires-Dist: types-pyinstaller; extra == "all"
51
+ Requires-Dist: pyinstaller; extra == "all"
52
+ Requires-Dist: jinja2; extra == "all"
53
+ Requires-Dist: duckdb; extra == "all"
54
+ Requires-Dist: segno; extra == "all"
55
+ Requires-Dist: jq; extra == "all"
56
+ Requires-Dist: weasyprint; extra == "all"
57
+ Requires-Dist: pypdf; extra == "all"
58
+ Requires-Dist: dicttoxml; extra == "all"
59
+ Requires-Dist: pdf2image; extra == "all"
60
+ Requires-Dist: firebase-admin; extra == "all"
61
+ Requires-Dist: pillow; extra == "all"
62
+ Requires-Dist: ldap3; extra == "all"
63
+ Dynamic: provides-extra
64
+ Dynamic: requires-dist
65
+ Dynamic: requires-python
@@ -0,0 +1,61 @@
1
+ fastapi
2
+ pydantic
3
+ pydantic[email]
4
+ concurrent-log-handler
5
+ hypercorn
6
+ pyjwt
7
+ redis
8
+ aiofiles
9
+ aiohttp
10
+ python-multipart
11
+ jsonschema
12
+ email-validator
13
+ asgi-correlation-id
14
+ pydantic-settings
15
+ fastapi-sso
16
+ sqlmodel
17
+ psycopg[binary]
18
+ asyncpg
19
+ greenlet
20
+ alembic
21
+ jinja2
22
+ pytest-cov
23
+ argon2
24
+ argon2-cffi
25
+ orjson
26
+
27
+ [all]
28
+ jsf
29
+ types-psutil
30
+ types-pyinstaller
31
+ pyinstaller
32
+ jinja2
33
+ duckdb
34
+ segno
35
+ jq
36
+ weasyprint
37
+ pypdf
38
+ dicttoxml
39
+ pdf2image
40
+ firebase-admin
41
+ pillow
42
+ ldap3
43
+
44
+ [extra]
45
+ jsf
46
+ types-psutil
47
+ types-pyinstaller
48
+ pyinstaller
49
+ jinja2
50
+ duckdb
51
+ segno
52
+ jq
53
+
54
+ [plugins]
55
+ weasyprint
56
+ pypdf
57
+ dicttoxml
58
+ pdf2image
59
+ firebase-admin
60
+ pillow
61
+ ldap3
dmart-0.1.3/setup.py ADDED
@@ -0,0 +1,35 @@
1
+ import os
2
+ from setuptools import setup, find_packages
3
+
4
+ BASE_DIR = os.path.dirname(os.path.abspath(__file__))
5
+
6
+ def parse_requirements(filename):
7
+ path = os.path.join(BASE_DIR, filename)
8
+ if not os.path.exists(path):
9
+ return []
10
+ with open(path, 'r') as f:
11
+ return [line.strip() for line in f if line.strip() and not line.startswith('#')]
12
+
13
+ install_requires = parse_requirements('requirements/core.txt')
14
+ extra_requires = parse_requirements('requirements/extra.txt')
15
+ plugins_requires = parse_requirements('requirements/plugins.txt')
16
+
17
+ setup(
18
+ name="dmart",
19
+ version="0.1.3",
20
+ packages=find_packages(),
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
+ install_requires=install_requires,
23
+ extras_require={
24
+ "extra": extra_requires,
25
+ "plugins": plugins_requires,
26
+ "all": extra_requires + plugins_requires,
27
+ },
28
+ entry_points={
29
+ "console_scripts": [
30
+ "dmart=dmart:main",
31
+ ],
32
+ },
33
+ include_package_data=True,
34
+ python_requires=">=3.10",
35
+ )
dmart-0.1.1/PKG-INFO DELETED
@@ -1,28 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: dmart
3
- Version: 0.1.1
4
- Requires-Python: >=3.10
5
- Requires-Dist: hypercorn
6
- Requires-Dist: fastapi
7
- Requires-Dist: uvicorn
8
- Requires-Dist: pydantic
9
- Requires-Dist: starlette
10
- Requires-Dist: python-multipart
11
- Requires-Dist: orjson
12
- Requires-Dist: asgi-correlation-id
13
- Requires-Dist: jsonschema
14
- Requires-Dist: sqlmodel
15
- Requires-Dist: sqlalchemy
16
- Requires-Dist: alembic
17
- Requires-Dist: asyncpg
18
- Requires-Dist: redis
19
- Requires-Dist: httpx
20
- Requires-Dist: jinja2
21
- Requires-Dist: python-jose[cryptography]
22
- Requires-Dist: passlib[bcrypt]
23
- Requires-Dist: python-dotenv
24
- Requires-Dist: aiofiles
25
- Requires-Dist: requests
26
- Requires-Dist: pydantic_settings
27
- Dynamic: requires-dist
28
- Dynamic: requires-python
@@ -1,28 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: dmart
3
- Version: 0.1.1
4
- Requires-Python: >=3.10
5
- Requires-Dist: hypercorn
6
- Requires-Dist: fastapi
7
- Requires-Dist: uvicorn
8
- Requires-Dist: pydantic
9
- Requires-Dist: starlette
10
- Requires-Dist: python-multipart
11
- Requires-Dist: orjson
12
- Requires-Dist: asgi-correlation-id
13
- Requires-Dist: jsonschema
14
- Requires-Dist: sqlmodel
15
- Requires-Dist: sqlalchemy
16
- Requires-Dist: alembic
17
- Requires-Dist: asyncpg
18
- Requires-Dist: redis
19
- Requires-Dist: httpx
20
- Requires-Dist: jinja2
21
- Requires-Dist: python-jose[cryptography]
22
- Requires-Dist: passlib[bcrypt]
23
- Requires-Dist: python-dotenv
24
- Requires-Dist: aiofiles
25
- Requires-Dist: requests
26
- Requires-Dist: pydantic_settings
27
- Dynamic: requires-dist
28
- Dynamic: requires-python
@@ -1,22 +0,0 @@
1
- hypercorn
2
- fastapi
3
- uvicorn
4
- pydantic
5
- starlette
6
- python-multipart
7
- orjson
8
- asgi-correlation-id
9
- jsonschema
10
- sqlmodel
11
- sqlalchemy
12
- alembic
13
- asyncpg
14
- redis
15
- httpx
16
- jinja2
17
- python-jose[cryptography]
18
- passlib[bcrypt]
19
- python-dotenv
20
- aiofiles
21
- requests
22
- pydantic_settings
dmart-0.1.1/setup.py DELETED
@@ -1,39 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- setup(
4
- name="dmart",
5
- version="0.1.1",
6
- packages=find_packages(),
7
- 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"],
8
- install_requires=[
9
- "hypercorn",
10
- "fastapi",
11
- "uvicorn",
12
- "pydantic",
13
- "starlette",
14
- "python-multipart",
15
- "orjson",
16
- "asgi-correlation-id",
17
- "jsonschema",
18
- "sqlmodel",
19
- "sqlalchemy",
20
- "alembic",
21
- "asyncpg",
22
- "redis",
23
- "httpx",
24
- "jinja2",
25
- "python-jose[cryptography]",
26
- "passlib[bcrypt]",
27
- "python-dotenv",
28
- "aiofiles",
29
- "requests",
30
- "pydantic_settings",
31
- ],
32
- entry_points={
33
- "console_scripts": [
34
- "dmart=dmart:main",
35
- ],
36
- },
37
- include_package_data=True,
38
- python_requires=">=3.10",
39
- )
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