nexo-database 0.0.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.
- nexo_database-0.0.1/LICENSE +21 -0
- nexo_database-0.0.1/PKG-INFO +98 -0
- nexo_database-0.0.1/nexo_database.egg-info/PKG-INFO +98 -0
- nexo_database-0.0.1/nexo_database.egg-info/SOURCES.txt +23 -0
- nexo_database-0.0.1/nexo_database.egg-info/dependency_links.txt +1 -0
- nexo_database-0.0.1/nexo_database.egg-info/requires.txt +88 -0
- nexo_database-0.0.1/nexo_database.egg-info/top_level.txt +1 -0
- nexo_database-0.0.1/pyproject.toml +121 -0
- nexo_database-0.0.1/setup.cfg +4 -0
- nexo_database-0.0.1/src/__init__.py +0 -0
- nexo_database-0.0.1/src/config/__init__.py +386 -0
- nexo_database-0.0.1/src/config/additional.py +99 -0
- nexo_database-0.0.1/src/config/config.example.yaml +241 -0
- nexo_database-0.0.1/src/config/connection.py +557 -0
- nexo_database-0.0.1/src/config/identifier.py +19 -0
- nexo_database-0.0.1/src/config/pooling.py +396 -0
- nexo_database-0.0.1/src/enums.py +116 -0
- nexo_database-0.0.1/src/handlers.py +203 -0
- nexo_database-0.0.1/src/managers/__init__.py +367 -0
- nexo_database-0.0.1/src/managers/client.py +105 -0
- nexo_database-0.0.1/src/managers/engine.py +62 -0
- nexo_database-0.0.1/src/managers/session.py +741 -0
- nexo_database-0.0.1/src/queries.py +324 -0
- nexo_database-0.0.1/src/types.py +9 -0
- nexo_database-0.0.1/src/utils.py +42 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 hubagrayuda
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nexo-database
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Database package for Nexo
|
|
5
|
+
Author-email: Agra Bima Yuda <agra@nexmedis.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: aioredis>=2.0.1
|
|
11
|
+
Requires-Dist: annotated-types>=0.7.0
|
|
12
|
+
Requires-Dist: anyio>=4.10.0
|
|
13
|
+
Requires-Dist: async-timeout>=5.0.1
|
|
14
|
+
Requires-Dist: bcrypt>=4.3.0
|
|
15
|
+
Requires-Dist: black>=25.9.0
|
|
16
|
+
Requires-Dist: cachetools>=5.5.2
|
|
17
|
+
Requires-Dist: certifi>=2025.8.3
|
|
18
|
+
Requires-Dist: cffi>=2.0.0
|
|
19
|
+
Requires-Dist: cfgv>=3.4.0
|
|
20
|
+
Requires-Dist: charset-normalizer>=3.4.3
|
|
21
|
+
Requires-Dist: click>=8.3.0
|
|
22
|
+
Requires-Dist: colorama>=0.4.6
|
|
23
|
+
Requires-Dist: cryptography>=46.0.1
|
|
24
|
+
Requires-Dist: distlib>=0.4.0
|
|
25
|
+
Requires-Dist: dnspython>=2.8.0
|
|
26
|
+
Requires-Dist: elastic-transport>=9.1.0
|
|
27
|
+
Requires-Dist: elasticsearch>=9.1.1
|
|
28
|
+
Requires-Dist: fastapi>=0.117.1
|
|
29
|
+
Requires-Dist: filelock>=3.19.1
|
|
30
|
+
Requires-Dist: google-api-core>=2.25.1
|
|
31
|
+
Requires-Dist: google-auth>=2.40.3
|
|
32
|
+
Requires-Dist: google-cloud-appengine-logging>=1.6.2
|
|
33
|
+
Requires-Dist: google-cloud-audit-log>=0.3.2
|
|
34
|
+
Requires-Dist: google-cloud-core>=2.4.3
|
|
35
|
+
Requires-Dist: google-cloud-logging>=3.12.1
|
|
36
|
+
Requires-Dist: google-cloud-pubsub>=2.31.1
|
|
37
|
+
Requires-Dist: googleapis-common-protos>=1.70.0
|
|
38
|
+
Requires-Dist: greenlet>=3.2.4
|
|
39
|
+
Requires-Dist: grpc-google-iam-v1>=0.14.2
|
|
40
|
+
Requires-Dist: grpcio>=1.75.0
|
|
41
|
+
Requires-Dist: grpcio-status>=1.75.0
|
|
42
|
+
Requires-Dist: h11>=0.16.0
|
|
43
|
+
Requires-Dist: httpcore>=1.0.9
|
|
44
|
+
Requires-Dist: httpx>=0.28.1
|
|
45
|
+
Requires-Dist: identify>=2.6.14
|
|
46
|
+
Requires-Dist: idna>=3.10
|
|
47
|
+
Requires-Dist: importlib_metadata>=8.7.0
|
|
48
|
+
Requires-Dist: iniconfig>=2.1.0
|
|
49
|
+
Requires-Dist: motor>=3.7.1
|
|
50
|
+
Requires-Dist: mypy_extensions>=1.1.0
|
|
51
|
+
Requires-Dist: nexo-crypto>=0.0.2
|
|
52
|
+
Requires-Dist: nexo-enums>=0.0.2
|
|
53
|
+
Requires-Dist: nexo-logging>=0.0.3
|
|
54
|
+
Requires-Dist: nexo-schemas>=0.0.1
|
|
55
|
+
Requires-Dist: nexo-types>=0.0.2
|
|
56
|
+
Requires-Dist: nexo-utils>=0.0.2
|
|
57
|
+
Requires-Dist: nodeenv>=1.9.1
|
|
58
|
+
Requires-Dist: opentelemetry-api>=1.37.0
|
|
59
|
+
Requires-Dist: opentelemetry-sdk>=1.37.0
|
|
60
|
+
Requires-Dist: opentelemetry-semantic-conventions>=0.58b0
|
|
61
|
+
Requires-Dist: packaging>=25.0
|
|
62
|
+
Requires-Dist: pathspec>=0.12.1
|
|
63
|
+
Requires-Dist: platformdirs>=4.4.0
|
|
64
|
+
Requires-Dist: pluggy>=1.6.0
|
|
65
|
+
Requires-Dist: pre_commit>=4.3.0
|
|
66
|
+
Requires-Dist: proto-plus>=1.26.1
|
|
67
|
+
Requires-Dist: protobuf>=6.32.1
|
|
68
|
+
Requires-Dist: pyasn1>=0.6.1
|
|
69
|
+
Requires-Dist: pyasn1_modules>=0.4.2
|
|
70
|
+
Requires-Dist: pycparser>=2.23
|
|
71
|
+
Requires-Dist: pycryptodome>=3.23.0
|
|
72
|
+
Requires-Dist: pydantic>=2.12.2
|
|
73
|
+
Requires-Dist: pydantic-settings>=2.10.1
|
|
74
|
+
Requires-Dist: pydantic_core>=2.41.4
|
|
75
|
+
Requires-Dist: Pygments>=2.19.2
|
|
76
|
+
Requires-Dist: PyJWT>=2.10.1
|
|
77
|
+
Requires-Dist: pymongo>=4.15.1
|
|
78
|
+
Requires-Dist: pytest>=8.4.2
|
|
79
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
|
80
|
+
Requires-Dist: python-dotenv>=1.1.1
|
|
81
|
+
Requires-Dist: pytokens>=0.1.10
|
|
82
|
+
Requires-Dist: PyYAML>=6.0.2
|
|
83
|
+
Requires-Dist: redis>=6.4.0
|
|
84
|
+
Requires-Dist: requests>=2.32.5
|
|
85
|
+
Requires-Dist: rsa>=4.9.1
|
|
86
|
+
Requires-Dist: six>=1.17.0
|
|
87
|
+
Requires-Dist: sniffio>=1.3.1
|
|
88
|
+
Requires-Dist: SQLAlchemy>=2.0.44
|
|
89
|
+
Requires-Dist: starlette>=0.48.0
|
|
90
|
+
Requires-Dist: typing-inspection>=0.4.2
|
|
91
|
+
Requires-Dist: typing_extensions>=4.15.0
|
|
92
|
+
Requires-Dist: ua-parser>=1.0.1
|
|
93
|
+
Requires-Dist: ua-parser-builtins>=0.18.0.post1
|
|
94
|
+
Requires-Dist: urllib3>=2.5.0
|
|
95
|
+
Requires-Dist: user-agents>=2.2.0
|
|
96
|
+
Requires-Dist: virtualenv>=20.34.0
|
|
97
|
+
Requires-Dist: zipp>=3.23.0
|
|
98
|
+
Dynamic: license-file
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nexo-database
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Database package for Nexo
|
|
5
|
+
Author-email: Agra Bima Yuda <agra@nexmedis.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: aioredis>=2.0.1
|
|
11
|
+
Requires-Dist: annotated-types>=0.7.0
|
|
12
|
+
Requires-Dist: anyio>=4.10.0
|
|
13
|
+
Requires-Dist: async-timeout>=5.0.1
|
|
14
|
+
Requires-Dist: bcrypt>=4.3.0
|
|
15
|
+
Requires-Dist: black>=25.9.0
|
|
16
|
+
Requires-Dist: cachetools>=5.5.2
|
|
17
|
+
Requires-Dist: certifi>=2025.8.3
|
|
18
|
+
Requires-Dist: cffi>=2.0.0
|
|
19
|
+
Requires-Dist: cfgv>=3.4.0
|
|
20
|
+
Requires-Dist: charset-normalizer>=3.4.3
|
|
21
|
+
Requires-Dist: click>=8.3.0
|
|
22
|
+
Requires-Dist: colorama>=0.4.6
|
|
23
|
+
Requires-Dist: cryptography>=46.0.1
|
|
24
|
+
Requires-Dist: distlib>=0.4.0
|
|
25
|
+
Requires-Dist: dnspython>=2.8.0
|
|
26
|
+
Requires-Dist: elastic-transport>=9.1.0
|
|
27
|
+
Requires-Dist: elasticsearch>=9.1.1
|
|
28
|
+
Requires-Dist: fastapi>=0.117.1
|
|
29
|
+
Requires-Dist: filelock>=3.19.1
|
|
30
|
+
Requires-Dist: google-api-core>=2.25.1
|
|
31
|
+
Requires-Dist: google-auth>=2.40.3
|
|
32
|
+
Requires-Dist: google-cloud-appengine-logging>=1.6.2
|
|
33
|
+
Requires-Dist: google-cloud-audit-log>=0.3.2
|
|
34
|
+
Requires-Dist: google-cloud-core>=2.4.3
|
|
35
|
+
Requires-Dist: google-cloud-logging>=3.12.1
|
|
36
|
+
Requires-Dist: google-cloud-pubsub>=2.31.1
|
|
37
|
+
Requires-Dist: googleapis-common-protos>=1.70.0
|
|
38
|
+
Requires-Dist: greenlet>=3.2.4
|
|
39
|
+
Requires-Dist: grpc-google-iam-v1>=0.14.2
|
|
40
|
+
Requires-Dist: grpcio>=1.75.0
|
|
41
|
+
Requires-Dist: grpcio-status>=1.75.0
|
|
42
|
+
Requires-Dist: h11>=0.16.0
|
|
43
|
+
Requires-Dist: httpcore>=1.0.9
|
|
44
|
+
Requires-Dist: httpx>=0.28.1
|
|
45
|
+
Requires-Dist: identify>=2.6.14
|
|
46
|
+
Requires-Dist: idna>=3.10
|
|
47
|
+
Requires-Dist: importlib_metadata>=8.7.0
|
|
48
|
+
Requires-Dist: iniconfig>=2.1.0
|
|
49
|
+
Requires-Dist: motor>=3.7.1
|
|
50
|
+
Requires-Dist: mypy_extensions>=1.1.0
|
|
51
|
+
Requires-Dist: nexo-crypto>=0.0.2
|
|
52
|
+
Requires-Dist: nexo-enums>=0.0.2
|
|
53
|
+
Requires-Dist: nexo-logging>=0.0.3
|
|
54
|
+
Requires-Dist: nexo-schemas>=0.0.1
|
|
55
|
+
Requires-Dist: nexo-types>=0.0.2
|
|
56
|
+
Requires-Dist: nexo-utils>=0.0.2
|
|
57
|
+
Requires-Dist: nodeenv>=1.9.1
|
|
58
|
+
Requires-Dist: opentelemetry-api>=1.37.0
|
|
59
|
+
Requires-Dist: opentelemetry-sdk>=1.37.0
|
|
60
|
+
Requires-Dist: opentelemetry-semantic-conventions>=0.58b0
|
|
61
|
+
Requires-Dist: packaging>=25.0
|
|
62
|
+
Requires-Dist: pathspec>=0.12.1
|
|
63
|
+
Requires-Dist: platformdirs>=4.4.0
|
|
64
|
+
Requires-Dist: pluggy>=1.6.0
|
|
65
|
+
Requires-Dist: pre_commit>=4.3.0
|
|
66
|
+
Requires-Dist: proto-plus>=1.26.1
|
|
67
|
+
Requires-Dist: protobuf>=6.32.1
|
|
68
|
+
Requires-Dist: pyasn1>=0.6.1
|
|
69
|
+
Requires-Dist: pyasn1_modules>=0.4.2
|
|
70
|
+
Requires-Dist: pycparser>=2.23
|
|
71
|
+
Requires-Dist: pycryptodome>=3.23.0
|
|
72
|
+
Requires-Dist: pydantic>=2.12.2
|
|
73
|
+
Requires-Dist: pydantic-settings>=2.10.1
|
|
74
|
+
Requires-Dist: pydantic_core>=2.41.4
|
|
75
|
+
Requires-Dist: Pygments>=2.19.2
|
|
76
|
+
Requires-Dist: PyJWT>=2.10.1
|
|
77
|
+
Requires-Dist: pymongo>=4.15.1
|
|
78
|
+
Requires-Dist: pytest>=8.4.2
|
|
79
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
|
80
|
+
Requires-Dist: python-dotenv>=1.1.1
|
|
81
|
+
Requires-Dist: pytokens>=0.1.10
|
|
82
|
+
Requires-Dist: PyYAML>=6.0.2
|
|
83
|
+
Requires-Dist: redis>=6.4.0
|
|
84
|
+
Requires-Dist: requests>=2.32.5
|
|
85
|
+
Requires-Dist: rsa>=4.9.1
|
|
86
|
+
Requires-Dist: six>=1.17.0
|
|
87
|
+
Requires-Dist: sniffio>=1.3.1
|
|
88
|
+
Requires-Dist: SQLAlchemy>=2.0.44
|
|
89
|
+
Requires-Dist: starlette>=0.48.0
|
|
90
|
+
Requires-Dist: typing-inspection>=0.4.2
|
|
91
|
+
Requires-Dist: typing_extensions>=4.15.0
|
|
92
|
+
Requires-Dist: ua-parser>=1.0.1
|
|
93
|
+
Requires-Dist: ua-parser-builtins>=0.18.0.post1
|
|
94
|
+
Requires-Dist: urllib3>=2.5.0
|
|
95
|
+
Requires-Dist: user-agents>=2.2.0
|
|
96
|
+
Requires-Dist: virtualenv>=20.34.0
|
|
97
|
+
Requires-Dist: zipp>=3.23.0
|
|
98
|
+
Dynamic: license-file
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
pyproject.toml
|
|
3
|
+
nexo_database.egg-info/PKG-INFO
|
|
4
|
+
nexo_database.egg-info/SOURCES.txt
|
|
5
|
+
nexo_database.egg-info/dependency_links.txt
|
|
6
|
+
nexo_database.egg-info/requires.txt
|
|
7
|
+
nexo_database.egg-info/top_level.txt
|
|
8
|
+
src/__init__.py
|
|
9
|
+
src/enums.py
|
|
10
|
+
src/handlers.py
|
|
11
|
+
src/queries.py
|
|
12
|
+
src/types.py
|
|
13
|
+
src/utils.py
|
|
14
|
+
src/config/__init__.py
|
|
15
|
+
src/config/additional.py
|
|
16
|
+
src/config/config.example.yaml
|
|
17
|
+
src/config/connection.py
|
|
18
|
+
src/config/identifier.py
|
|
19
|
+
src/config/pooling.py
|
|
20
|
+
src/managers/__init__.py
|
|
21
|
+
src/managers/client.py
|
|
22
|
+
src/managers/engine.py
|
|
23
|
+
src/managers/session.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
aioredis>=2.0.1
|
|
2
|
+
annotated-types>=0.7.0
|
|
3
|
+
anyio>=4.10.0
|
|
4
|
+
async-timeout>=5.0.1
|
|
5
|
+
bcrypt>=4.3.0
|
|
6
|
+
black>=25.9.0
|
|
7
|
+
cachetools>=5.5.2
|
|
8
|
+
certifi>=2025.8.3
|
|
9
|
+
cffi>=2.0.0
|
|
10
|
+
cfgv>=3.4.0
|
|
11
|
+
charset-normalizer>=3.4.3
|
|
12
|
+
click>=8.3.0
|
|
13
|
+
colorama>=0.4.6
|
|
14
|
+
cryptography>=46.0.1
|
|
15
|
+
distlib>=0.4.0
|
|
16
|
+
dnspython>=2.8.0
|
|
17
|
+
elastic-transport>=9.1.0
|
|
18
|
+
elasticsearch>=9.1.1
|
|
19
|
+
fastapi>=0.117.1
|
|
20
|
+
filelock>=3.19.1
|
|
21
|
+
google-api-core>=2.25.1
|
|
22
|
+
google-auth>=2.40.3
|
|
23
|
+
google-cloud-appengine-logging>=1.6.2
|
|
24
|
+
google-cloud-audit-log>=0.3.2
|
|
25
|
+
google-cloud-core>=2.4.3
|
|
26
|
+
google-cloud-logging>=3.12.1
|
|
27
|
+
google-cloud-pubsub>=2.31.1
|
|
28
|
+
googleapis-common-protos>=1.70.0
|
|
29
|
+
greenlet>=3.2.4
|
|
30
|
+
grpc-google-iam-v1>=0.14.2
|
|
31
|
+
grpcio>=1.75.0
|
|
32
|
+
grpcio-status>=1.75.0
|
|
33
|
+
h11>=0.16.0
|
|
34
|
+
httpcore>=1.0.9
|
|
35
|
+
httpx>=0.28.1
|
|
36
|
+
identify>=2.6.14
|
|
37
|
+
idna>=3.10
|
|
38
|
+
importlib_metadata>=8.7.0
|
|
39
|
+
iniconfig>=2.1.0
|
|
40
|
+
motor>=3.7.1
|
|
41
|
+
mypy_extensions>=1.1.0
|
|
42
|
+
nexo-crypto>=0.0.2
|
|
43
|
+
nexo-enums>=0.0.2
|
|
44
|
+
nexo-logging>=0.0.3
|
|
45
|
+
nexo-schemas>=0.0.1
|
|
46
|
+
nexo-types>=0.0.2
|
|
47
|
+
nexo-utils>=0.0.2
|
|
48
|
+
nodeenv>=1.9.1
|
|
49
|
+
opentelemetry-api>=1.37.0
|
|
50
|
+
opentelemetry-sdk>=1.37.0
|
|
51
|
+
opentelemetry-semantic-conventions>=0.58b0
|
|
52
|
+
packaging>=25.0
|
|
53
|
+
pathspec>=0.12.1
|
|
54
|
+
platformdirs>=4.4.0
|
|
55
|
+
pluggy>=1.6.0
|
|
56
|
+
pre_commit>=4.3.0
|
|
57
|
+
proto-plus>=1.26.1
|
|
58
|
+
protobuf>=6.32.1
|
|
59
|
+
pyasn1>=0.6.1
|
|
60
|
+
pyasn1_modules>=0.4.2
|
|
61
|
+
pycparser>=2.23
|
|
62
|
+
pycryptodome>=3.23.0
|
|
63
|
+
pydantic>=2.12.2
|
|
64
|
+
pydantic-settings>=2.10.1
|
|
65
|
+
pydantic_core>=2.41.4
|
|
66
|
+
Pygments>=2.19.2
|
|
67
|
+
PyJWT>=2.10.1
|
|
68
|
+
pymongo>=4.15.1
|
|
69
|
+
pytest>=8.4.2
|
|
70
|
+
python-dateutil>=2.9.0.post0
|
|
71
|
+
python-dotenv>=1.1.1
|
|
72
|
+
pytokens>=0.1.10
|
|
73
|
+
PyYAML>=6.0.2
|
|
74
|
+
redis>=6.4.0
|
|
75
|
+
requests>=2.32.5
|
|
76
|
+
rsa>=4.9.1
|
|
77
|
+
six>=1.17.0
|
|
78
|
+
sniffio>=1.3.1
|
|
79
|
+
SQLAlchemy>=2.0.44
|
|
80
|
+
starlette>=0.48.0
|
|
81
|
+
typing-inspection>=0.4.2
|
|
82
|
+
typing_extensions>=4.15.0
|
|
83
|
+
ua-parser>=1.0.1
|
|
84
|
+
ua-parser-builtins>=0.18.0.post1
|
|
85
|
+
urllib3>=2.5.0
|
|
86
|
+
user-agents>=2.2.0
|
|
87
|
+
virtualenv>=20.34.0
|
|
88
|
+
zipp>=3.23.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nexo
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "nexo-database"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Database package for Nexo"
|
|
9
|
+
authors = [
|
|
10
|
+
{ name = "Agra Bima Yuda", email = "agra@nexmedis.com" }
|
|
11
|
+
]
|
|
12
|
+
license = { text = "Proprietary" }
|
|
13
|
+
readme = "README.md"
|
|
14
|
+
requires-python = ">=3.12"
|
|
15
|
+
dependencies = [
|
|
16
|
+
"aioredis>=2.0.1",
|
|
17
|
+
"annotated-types>=0.7.0",
|
|
18
|
+
"anyio>=4.10.0",
|
|
19
|
+
"async-timeout>=5.0.1",
|
|
20
|
+
"bcrypt>=4.3.0",
|
|
21
|
+
"black>=25.9.0",
|
|
22
|
+
"cachetools>=5.5.2",
|
|
23
|
+
"certifi>=2025.8.3",
|
|
24
|
+
"cffi>=2.0.0",
|
|
25
|
+
"cfgv>=3.4.0",
|
|
26
|
+
"charset-normalizer>=3.4.3",
|
|
27
|
+
"click>=8.3.0",
|
|
28
|
+
"colorama>=0.4.6",
|
|
29
|
+
"cryptography>=46.0.1",
|
|
30
|
+
"distlib>=0.4.0",
|
|
31
|
+
"dnspython>=2.8.0",
|
|
32
|
+
"elastic-transport>=9.1.0",
|
|
33
|
+
"elasticsearch>=9.1.1",
|
|
34
|
+
"fastapi>=0.117.1",
|
|
35
|
+
"filelock>=3.19.1",
|
|
36
|
+
"google-api-core>=2.25.1",
|
|
37
|
+
"google-auth>=2.40.3",
|
|
38
|
+
"google-cloud-appengine-logging>=1.6.2",
|
|
39
|
+
"google-cloud-audit-log>=0.3.2",
|
|
40
|
+
"google-cloud-core>=2.4.3",
|
|
41
|
+
"google-cloud-logging>=3.12.1",
|
|
42
|
+
"google-cloud-pubsub>=2.31.1",
|
|
43
|
+
"googleapis-common-protos>=1.70.0",
|
|
44
|
+
"greenlet>=3.2.4",
|
|
45
|
+
"grpc-google-iam-v1>=0.14.2",
|
|
46
|
+
"grpcio>=1.75.0",
|
|
47
|
+
"grpcio-status>=1.75.0",
|
|
48
|
+
"h11>=0.16.0",
|
|
49
|
+
"httpcore>=1.0.9",
|
|
50
|
+
"httpx>=0.28.1",
|
|
51
|
+
"identify>=2.6.14",
|
|
52
|
+
"idna>=3.10",
|
|
53
|
+
"importlib_metadata>=8.7.0",
|
|
54
|
+
"iniconfig>=2.1.0",
|
|
55
|
+
"motor>=3.7.1",
|
|
56
|
+
"mypy_extensions>=1.1.0",
|
|
57
|
+
"nexo-crypto>=0.0.2",
|
|
58
|
+
"nexo-enums>=0.0.2",
|
|
59
|
+
"nexo-logging>=0.0.3",
|
|
60
|
+
"nexo-schemas>=0.0.1",
|
|
61
|
+
"nexo-types>=0.0.2",
|
|
62
|
+
"nexo-utils>=0.0.2",
|
|
63
|
+
"nodeenv>=1.9.1",
|
|
64
|
+
"opentelemetry-api>=1.37.0",
|
|
65
|
+
"opentelemetry-sdk>=1.37.0",
|
|
66
|
+
"opentelemetry-semantic-conventions>=0.58b0",
|
|
67
|
+
"packaging>=25.0",
|
|
68
|
+
"pathspec>=0.12.1",
|
|
69
|
+
"platformdirs>=4.4.0",
|
|
70
|
+
"pluggy>=1.6.0",
|
|
71
|
+
"pre_commit>=4.3.0",
|
|
72
|
+
"proto-plus>=1.26.1",
|
|
73
|
+
"protobuf>=6.32.1",
|
|
74
|
+
"pyasn1>=0.6.1",
|
|
75
|
+
"pyasn1_modules>=0.4.2",
|
|
76
|
+
"pycparser>=2.23",
|
|
77
|
+
"pycryptodome>=3.23.0",
|
|
78
|
+
"pydantic>=2.12.2",
|
|
79
|
+
"pydantic-settings>=2.10.1",
|
|
80
|
+
"pydantic_core>=2.41.4",
|
|
81
|
+
"Pygments>=2.19.2",
|
|
82
|
+
"PyJWT>=2.10.1",
|
|
83
|
+
"pymongo>=4.15.1",
|
|
84
|
+
"pytest>=8.4.2",
|
|
85
|
+
"python-dateutil>=2.9.0.post0",
|
|
86
|
+
"python-dotenv>=1.1.1",
|
|
87
|
+
"pytokens>=0.1.10",
|
|
88
|
+
"PyYAML>=6.0.2",
|
|
89
|
+
"redis>=6.4.0",
|
|
90
|
+
"requests>=2.32.5",
|
|
91
|
+
"rsa>=4.9.1",
|
|
92
|
+
"six>=1.17.0",
|
|
93
|
+
"sniffio>=1.3.1",
|
|
94
|
+
"SQLAlchemy>=2.0.44",
|
|
95
|
+
"starlette>=0.48.0",
|
|
96
|
+
"typing-inspection>=0.4.2",
|
|
97
|
+
"typing_extensions>=4.15.0",
|
|
98
|
+
"ua-parser>=1.0.1",
|
|
99
|
+
"ua-parser-builtins>=0.18.0.post1",
|
|
100
|
+
"urllib3>=2.5.0",
|
|
101
|
+
"user-agents>=2.2.0",
|
|
102
|
+
"virtualenv>=20.34.0",
|
|
103
|
+
"zipp>=3.23.0",
|
|
104
|
+
]
|
|
105
|
+
|
|
106
|
+
[tool.setuptools]
|
|
107
|
+
packages = [
|
|
108
|
+
"nexo.database",
|
|
109
|
+
"nexo.database.config",
|
|
110
|
+
"nexo.database.managers",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
[tool.setuptools.package-data]
|
|
114
|
+
"nexo.database" = ["*.json", "*.yaml"]
|
|
115
|
+
"nexo.database.config" = ["*.json", "*.yaml"]
|
|
116
|
+
"nexo.database.managers" = ["*.json", "*.yaml"]
|
|
117
|
+
|
|
118
|
+
[tool.setuptools.package-dir]
|
|
119
|
+
"nexo.database" = "src"
|
|
120
|
+
"nexo.database.config" = "src/config"
|
|
121
|
+
"nexo.database.managers" = "src/managers"
|
|
File without changes
|