fastapi-error-map 0.9.0__tar.gz → 0.9.0.post1__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 (33) hide show
  1. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/PKG-INFO +3 -1
  2. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/pyproject.toml +5 -1
  3. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/.github/workflows/ci.yaml +0 -0
  4. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/.github/workflows/test-compatibility.yaml +0 -0
  5. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/.gitignore +0 -0
  6. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/.pre-commit-config.yaml +0 -0
  7. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/LICENSE +0 -0
  8. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/Makefile +0 -0
  9. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/README.md +0 -0
  10. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/docs/example-openapi.png +0 -0
  11. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/examples/__init__.py +0 -0
  12. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/examples/errors.py +0 -0
  13. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/examples/main.py +0 -0
  14. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/fastapi_error_map/__init__.py +0 -0
  15. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/fastapi_error_map/error_handling.py +0 -0
  16. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/fastapi_error_map/openapi.py +0 -0
  17. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/fastapi_error_map/py.typed +0 -0
  18. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/fastapi_error_map/routing.py +0 -0
  19. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/fastapi_error_map/rules.py +0 -0
  20. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/fastapi_error_map/translators.py +0 -0
  21. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/noxfile.py +0 -0
  22. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/__init__.py +0 -0
  23. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/integration/__init__.py +0 -0
  24. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/integration/test_example.py +0 -0
  25. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/integration/test_routing.py +0 -0
  26. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/unit/__init__.py +0 -0
  27. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/unit/error_stubs.py +0 -0
  28. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/unit/test_error_handling.py +0 -0
  29. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/unit/test_openapi.py +0 -0
  30. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/unit/test_rules.py +0 -0
  31. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/unit/test_translators.py +0 -0
  32. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/tests/unit/translator_stubs.py +0 -0
  33. {fastapi_error_map-0.9.0 → fastapi_error_map-0.9.0.post1}/uv.lock +0 -0
@@ -1,7 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastapi-error-map
3
- Version: 0.9.0
3
+ Version: 0.9.0.post1
4
4
  Summary: Elegant per-endpoint error handling in FastAPI with OpenAPI schema generation
5
+ Project-URL: Homepage, https://github.com/ivan-borovets/fastapi-error-map
6
+ Project-URL: Repository, https://github.com/ivan-borovets/fastapi-error-map
5
7
  Author-email: Ivan Borovets <ivan.r.borovets@gmail.com>
6
8
  License: Apache-2.0
7
9
  License-File: LICENSE
@@ -7,7 +7,7 @@ sources = ["src"]
7
7
 
8
8
  [project]
9
9
  name = "fastapi-error-map"
10
- version = "0.9.0"
10
+ version = "0.9.0.post1"
11
11
  description = "Elegant per-endpoint error handling in FastAPI with OpenAPI schema generation"
12
12
  readme = "README.md"
13
13
  license = { text = "Apache-2.0" }
@@ -34,6 +34,10 @@ dependencies = [
34
34
  "orjson>=3.11.1",
35
35
  ]
36
36
 
37
+ [project.urls]
38
+ Homepage = "https://github.com/ivan-borovets/fastapi-error-map"
39
+ Repository = "https://github.com/ivan-borovets/fastapi-error-map"
40
+
37
41
  [project.optional-dependencies]
38
42
  dev = [
39
43
  "mypy==1.8.0",