pgsqlasync2fast-fastapi 0.1.0__tar.gz → 0.1.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.
- {pgsqlasync2fast_fastapi-0.1.0/src/pgsqlasync2fast_fastapi.egg-info → pgsqlasync2fast_fastapi-0.1.1}/PKG-INFO +2 -1
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/pyproject.toml +2 -1
- pgsqlasync2fast_fastapi-0.1.1/src/pgsqlasync2fast_fastapi/__version__.py +1 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1/src/pgsqlasync2fast_fastapi.egg-info}/PKG-INFO +2 -1
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/src/pgsqlasync2fast_fastapi.egg-info/requires.txt +1 -0
- pgsqlasync2fast_fastapi-0.1.0/src/pgsqlasync2fast_fastapi/__version__.py +0 -1
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/LICENSE +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/MANIFEST.in +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/README.md +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/docs/.env.example +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/setup.cfg +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/src/pgsqlasync2fast_fastapi/__init__.py +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/src/pgsqlasync2fast_fastapi/connection.py +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/src/pgsqlasync2fast_fastapi/database.py +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/src/pgsqlasync2fast_fastapi/dependencies.py +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/src/pgsqlasync2fast_fastapi/settings.py +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/src/pgsqlasync2fast_fastapi.egg-info/SOURCES.txt +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/src/pgsqlasync2fast_fastapi.egg-info/dependency_links.txt +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/src/pgsqlasync2fast_fastapi.egg-info/top_level.txt +0 -0
- {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.1}/tests/test_completo.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pgsqlasync2fast-fastapi
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Simple and fast PostgreSQL async module for FastAPI with multi-database support
|
|
5
5
|
Author-email: Angel Daniel Sanchez Castillo <angeldaniel.sanchezcastillo@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -48,6 +48,7 @@ Requires-Dist: pydantic>=2.0.0
|
|
|
48
48
|
Requires-Dist: pydantic-settings>=2.0.0
|
|
49
49
|
Requires-Dist: sqlalchemy>=2.0.0
|
|
50
50
|
Requires-Dist: asyncpg>=0.29.0
|
|
51
|
+
Requires-Dist: greenlet>=3.0.0
|
|
51
52
|
Provides-Extra: dev
|
|
52
53
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
53
54
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pgsqlasync2fast-fastapi"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "Simple and fast PostgreSQL async module for FastAPI with multi-database support"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -32,6 +32,7 @@ dependencies = [
|
|
|
32
32
|
"pydantic-settings>=2.0.0",
|
|
33
33
|
"sqlalchemy>=2.0.0",
|
|
34
34
|
"asyncpg>=0.29.0",
|
|
35
|
+
"greenlet>=3.0.0",
|
|
35
36
|
]
|
|
36
37
|
|
|
37
38
|
[project.optional-dependencies]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pgsqlasync2fast-fastapi
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Simple and fast PostgreSQL async module for FastAPI with multi-database support
|
|
5
5
|
Author-email: Angel Daniel Sanchez Castillo <angeldaniel.sanchezcastillo@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -48,6 +48,7 @@ Requires-Dist: pydantic>=2.0.0
|
|
|
48
48
|
Requires-Dist: pydantic-settings>=2.0.0
|
|
49
49
|
Requires-Dist: sqlalchemy>=2.0.0
|
|
50
50
|
Requires-Dist: asyncpg>=0.29.0
|
|
51
|
+
Requires-Dist: greenlet>=3.0.0
|
|
51
52
|
Provides-Extra: dev
|
|
52
53
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
53
54
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.0"
|
|
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
|