fastsqs 0.3.2__tar.gz → 0.3.3__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.
- {fastsqs-0.3.2/fastsqs.egg-info → fastsqs-0.3.3}/PKG-INFO +4 -1
- {fastsqs-0.3.2 → fastsqs-0.3.3/fastsqs.egg-info}/PKG-INFO +4 -1
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs.egg-info/requires.txt +4 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/setup.py +2 -1
- {fastsqs-0.3.2 → fastsqs-0.3.3}/LICENSE +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/MANIFEST.in +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/README.md +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/__init__.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/app.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/events.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/exceptions.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/__init__.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/base.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/error_handling.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/idempotency.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/logging.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/parallelization.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/timing.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/visibility.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/presets.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/routing/__init__.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/routing/entry.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/routing/router.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/types.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/utils.py +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs.egg-info/SOURCES.txt +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs.egg-info/dependency_links.txt +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs.egg-info/top_level.txt +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/pyproject.toml +0 -0
- {fastsqs-0.3.2 → fastsqs-0.3.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastsqs
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: FastAPI-like, modern async SQS message processing for Python with advanced features
|
|
5
5
|
Home-page: https://github.com/lafayettegabe/fastsqs
|
|
6
6
|
Author: Gabriel LaFayette
|
|
@@ -27,6 +27,9 @@ Requires-Dist: pydantic>=2.0.0
|
|
|
27
27
|
Provides-Extra: dynamodb
|
|
28
28
|
Requires-Dist: boto3>=1.26.0; extra == "dynamodb"
|
|
29
29
|
Requires-Dist: aioboto3>=12.0.0; extra == "dynamodb"
|
|
30
|
+
Provides-Extra: idempotency
|
|
31
|
+
Requires-Dist: boto3>=1.26.0; extra == "idempotency"
|
|
32
|
+
Requires-Dist: aioboto3>=12.0.0; extra == "idempotency"
|
|
30
33
|
Provides-Extra: all
|
|
31
34
|
Requires-Dist: boto3>=1.26.0; extra == "all"
|
|
32
35
|
Requires-Dist: aioboto3>=12.0.0; extra == "all"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastsqs
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: FastAPI-like, modern async SQS message processing for Python with advanced features
|
|
5
5
|
Home-page: https://github.com/lafayettegabe/fastsqs
|
|
6
6
|
Author: Gabriel LaFayette
|
|
@@ -27,6 +27,9 @@ Requires-Dist: pydantic>=2.0.0
|
|
|
27
27
|
Provides-Extra: dynamodb
|
|
28
28
|
Requires-Dist: boto3>=1.26.0; extra == "dynamodb"
|
|
29
29
|
Requires-Dist: aioboto3>=12.0.0; extra == "dynamodb"
|
|
30
|
+
Provides-Extra: idempotency
|
|
31
|
+
Requires-Dist: boto3>=1.26.0; extra == "idempotency"
|
|
32
|
+
Requires-Dist: aioboto3>=12.0.0; extra == "idempotency"
|
|
30
33
|
Provides-Extra: all
|
|
31
34
|
Requires-Dist: boto3>=1.26.0; extra == "all"
|
|
32
35
|
Requires-Dist: aioboto3>=12.0.0; extra == "all"
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="fastsqs",
|
|
5
|
-
version="0.3.
|
|
5
|
+
version="0.3.3",
|
|
6
6
|
description="FastAPI-like, modern async SQS message processing for Python with advanced features",
|
|
7
7
|
long_description=open("README.md").read(),
|
|
8
8
|
long_description_content_type="text/markdown",
|
|
@@ -15,6 +15,7 @@ setup(
|
|
|
15
15
|
],
|
|
16
16
|
extras_require={
|
|
17
17
|
"dynamodb": ["boto3>=1.26.0", "aioboto3>=12.0.0"],
|
|
18
|
+
"idempotency": ["boto3>=1.26.0", "aioboto3>=12.0.0"],
|
|
18
19
|
"all": ["boto3>=1.26.0", "aioboto3>=12.0.0"],
|
|
19
20
|
},
|
|
20
21
|
python_requires=">=3.8",
|
|
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
|
|
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
|