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.
Files changed (30) hide show
  1. {fastsqs-0.3.2/fastsqs.egg-info → fastsqs-0.3.3}/PKG-INFO +4 -1
  2. {fastsqs-0.3.2 → fastsqs-0.3.3/fastsqs.egg-info}/PKG-INFO +4 -1
  3. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs.egg-info/requires.txt +4 -0
  4. {fastsqs-0.3.2 → fastsqs-0.3.3}/setup.py +2 -1
  5. {fastsqs-0.3.2 → fastsqs-0.3.3}/LICENSE +0 -0
  6. {fastsqs-0.3.2 → fastsqs-0.3.3}/MANIFEST.in +0 -0
  7. {fastsqs-0.3.2 → fastsqs-0.3.3}/README.md +0 -0
  8. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/__init__.py +0 -0
  9. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/app.py +0 -0
  10. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/events.py +0 -0
  11. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/exceptions.py +0 -0
  12. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/__init__.py +0 -0
  13. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/base.py +0 -0
  14. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/error_handling.py +0 -0
  15. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/idempotency.py +0 -0
  16. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/logging.py +0 -0
  17. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/parallelization.py +0 -0
  18. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/timing.py +0 -0
  19. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/middleware/visibility.py +0 -0
  20. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/presets.py +0 -0
  21. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/routing/__init__.py +0 -0
  22. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/routing/entry.py +0 -0
  23. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/routing/router.py +0 -0
  24. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/types.py +0 -0
  25. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs/utils.py +0 -0
  26. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs.egg-info/SOURCES.txt +0 -0
  27. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs.egg-info/dependency_links.txt +0 -0
  28. {fastsqs-0.3.2 → fastsqs-0.3.3}/fastsqs.egg-info/top_level.txt +0 -0
  29. {fastsqs-0.3.2 → fastsqs-0.3.3}/pyproject.toml +0 -0
  30. {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.2
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.2
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"
@@ -7,3 +7,7 @@ aioboto3>=12.0.0
7
7
  [dynamodb]
8
8
  boto3>=1.26.0
9
9
  aioboto3>=12.0.0
10
+
11
+ [idempotency]
12
+ boto3>=1.26.0
13
+ aioboto3>=12.0.0
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="fastsqs",
5
- version="0.3.2",
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