spakky-fastapi 0.6.0__tar.gz → 0.6.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.
- {spakky_fastapi-0.6.0 → spakky_fastapi-0.6.2}/PKG-INFO +2 -2
- {spakky_fastapi-0.6.0 → spakky_fastapi-0.6.2}/pyproject.toml +2 -2
- {spakky_fastapi-0.6.0 → spakky_fastapi-0.6.2}/spakky_fastapi/post_processor.py +1 -1
- {spakky_fastapi-0.6.0 → spakky_fastapi-0.6.2}/README.md +0 -0
- {spakky_fastapi-0.6.0 → spakky_fastapi-0.6.2}/spakky_fastapi/__init__.py +0 -0
- {spakky_fastapi-0.6.0 → spakky_fastapi-0.6.2}/spakky_fastapi/error.py +0 -0
- {spakky_fastapi-0.6.0 → spakky_fastapi-0.6.2}/spakky_fastapi/py.typed +0 -0
- {spakky_fastapi-0.6.0 → spakky_fastapi-0.6.2}/spakky_fastapi/routing.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: spakky-fastapi
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.2
|
4
4
|
Summary: Highly abstracted Framework core to use DDD & DI/IoC & AOP & Etc...
|
5
5
|
Author: Spakky
|
6
6
|
Author-email: sejong418@icloud.com
|
@@ -10,7 +10,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.11
|
11
11
|
Classifier: Programming Language :: Python :: 3.12
|
12
12
|
Requires-Dist: fastapi (>=0.109.2,<0.110.0)
|
13
|
-
Requires-Dist: spakky-core (>=0.6.
|
13
|
+
Requires-Dist: spakky-core (>=0.6.2)
|
14
14
|
Requires-Dist: websockets (>=12.0,<13.0)
|
15
15
|
Description-Content-Type: text/markdown
|
16
16
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "spakky-fastapi"
|
3
|
-
version = "0.6.
|
3
|
+
version = "0.6.2"
|
4
4
|
description = "Highly abstracted Framework core to use DDD & DI/IoC & AOP & Etc..."
|
5
5
|
authors = ["Spakky <sejong418@icloud.com>"]
|
6
6
|
readme = "README.md"
|
@@ -12,7 +12,7 @@ build-backend = "poetry.core.masonry.api"
|
|
12
12
|
[tool.poetry.dependencies]
|
13
13
|
python = ">=3.10"
|
14
14
|
fastapi = "^0.109.2"
|
15
|
-
spakky-core = ">=0.6.
|
15
|
+
spakky-core = ">=0.6.2"
|
16
16
|
websockets = "^12.0"
|
17
17
|
|
18
18
|
[tool.poetry.group.dev.dependencies]
|
@@ -7,7 +7,7 @@ from fastapi import APIRouter, FastAPI
|
|
7
7
|
from fastapi.exceptions import FastAPIError
|
8
8
|
from fastapi.utils import create_response_field # type: ignore
|
9
9
|
from spakky.bean.interfaces.bean_container import IBeanContainer
|
10
|
-
from spakky.bean.interfaces.
|
10
|
+
from spakky.bean.interfaces.bean_processor import IBeanPostProcessor
|
11
11
|
from spakky.stereotype.controller import Controller
|
12
12
|
from spakky_fastapi.routing import Route, WebSocketRoute
|
13
13
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|