pgsqlasync2fast-fastapi 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 (20) hide show
  1. {pgsqlasync2fast_fastapi-0.1.0/src/pgsqlasync2fast_fastapi.egg-info → pgsqlasync2fast_fastapi-0.1.2}/PKG-INFO +2 -7
  2. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/pyproject.toml +10 -3
  3. pgsqlasync2fast_fastapi-0.1.2/src/pgsqlasync2fast_fastapi/__version__.py +1 -0
  4. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2/src/pgsqlasync2fast_fastapi.egg-info}/PKG-INFO +2 -7
  5. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/src/pgsqlasync2fast_fastapi.egg-info/requires.txt +1 -7
  6. pgsqlasync2fast_fastapi-0.1.0/src/pgsqlasync2fast_fastapi/__version__.py +0 -1
  7. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/LICENSE +0 -0
  8. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/MANIFEST.in +0 -0
  9. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/README.md +0 -0
  10. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/docs/.env.example +0 -0
  11. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/setup.cfg +0 -0
  12. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/src/pgsqlasync2fast_fastapi/__init__.py +0 -0
  13. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/src/pgsqlasync2fast_fastapi/connection.py +0 -0
  14. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/src/pgsqlasync2fast_fastapi/database.py +0 -0
  15. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/src/pgsqlasync2fast_fastapi/dependencies.py +0 -0
  16. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/src/pgsqlasync2fast_fastapi/settings.py +0 -0
  17. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/src/pgsqlasync2fast_fastapi.egg-info/SOURCES.txt +0 -0
  18. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/src/pgsqlasync2fast_fastapi.egg-info/dependency_links.txt +0 -0
  19. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/src/pgsqlasync2fast_fastapi.egg-info/top_level.txt +0 -0
  20. {pgsqlasync2fast_fastapi-0.1.0 → pgsqlasync2fast_fastapi-0.1.2}/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.0
3
+ Version: 0.1.2
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,12 +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
- Provides-Extra: dev
52
- Requires-Dist: pytest>=7.0.0; extra == "dev"
53
- Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
54
- Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
55
- Requires-Dist: httpx>=0.24.0; extra == "dev"
56
- Requires-Dist: mypy>=1.0.0; extra == "dev"
51
+ Requires-Dist: greenlet>=3.0.0
57
52
  Dynamic: license-file
58
53
 
59
54
  # pgsqlasync2fast-fastapi
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pgsqlasync2fast-fastapi"
7
- version = "0.1.0"
7
+ version = "0.1.2"
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,15 +32,22 @@ 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
- [project.optional-dependencies]
38
+ [dependency-groups]
38
39
  dev = [
40
+ "black",
41
+ "ruff",
42
+ "mypy>=1.0.0",
43
+ "build",
44
+ "twine",
45
+ ]
46
+ test = [
39
47
  "pytest>=7.0.0",
40
48
  "pytest-asyncio>=0.21.0",
41
49
  "pytest-cov>=4.0.0",
42
50
  "httpx>=0.24.0",
43
- "mypy>=1.0.0",
44
51
  ]
45
52
 
46
53
  [project.urls]
@@ -0,0 +1 @@
1
+ __version__ = "0.1.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pgsqlasync2fast-fastapi
3
- Version: 0.1.0
3
+ Version: 0.1.2
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,12 +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
- Provides-Extra: dev
52
- Requires-Dist: pytest>=7.0.0; extra == "dev"
53
- Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
54
- Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
55
- Requires-Dist: httpx>=0.24.0; extra == "dev"
56
- Requires-Dist: mypy>=1.0.0; extra == "dev"
51
+ Requires-Dist: greenlet>=3.0.0
57
52
  Dynamic: license-file
58
53
 
59
54
  # pgsqlasync2fast-fastapi
@@ -3,10 +3,4 @@ pydantic>=2.0.0
3
3
  pydantic-settings>=2.0.0
4
4
  sqlalchemy>=2.0.0
5
5
  asyncpg>=0.29.0
6
-
7
- [dev]
8
- pytest>=7.0.0
9
- pytest-asyncio>=0.21.0
10
- pytest-cov>=4.0.0
11
- httpx>=0.24.0
12
- mypy>=1.0.0
6
+ greenlet>=3.0.0
@@ -1 +0,0 @@
1
- __version__ = "0.1.0"