pjdev-sqlmodel 4.0.1__tar.gz → 4.0.1a2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pjdev-sqlmodel
3
- Version: 4.0.1
3
+ Version: 4.0.1a2
4
4
  Project-URL: Documentation, https://gitlab.purplejay.net/keystone/python
5
5
  Project-URL: Issues, https://gitlab.purplejay.net/keystone/python/issues
6
6
  Project-URL: Source, https://gitlab.purplejay.net/keystone/python
@@ -1,4 +1,4 @@
1
1
  # SPDX-FileCopyrightText: 2024-present Chris O'Neill <chris@purplejay.io>
2
2
  #
3
3
  # SPDX-License-Identifier: MIT
4
- __version__ = "4.0.1"
4
+ __version__ = "4.0.1a2"
@@ -2,10 +2,6 @@
2
2
  #
3
3
  # SPDX-License-Identifier: MIT
4
4
 
5
- from loguru import logger
6
-
7
- logger.disable("pjdev_sqlmodel")
8
-
9
5
  from .models import *
10
6
  from .settings_service import get_settings, init_settings
11
7
  from .sqlmodel_service import (
@@ -24,7 +20,6 @@ from .utilities import (
24
20
  )
25
21
 
26
22
  __all__ = [
27
- "models",
28
23
  "get_settings",
29
24
  "initialize_engine",
30
25
  "session_context",
@@ -37,4 +32,8 @@ __all__ = [
37
32
  "load_raw_csv_data",
38
33
  "load_csv_data",
39
34
  "get_files_in_directory",
40
- ]
35
+ ] + models.__all__
36
+
37
+ from loguru import logger
38
+
39
+ logger.disable("pjdev_sqlmodel")