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