muffin-rest 4.5.0__tar.gz → 4.5.1__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 (34) hide show
  1. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/PKG-INFO +10 -1
  2. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/pyproject.toml +14 -12
  3. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/LICENSE +0 -0
  4. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/README.rst +0 -0
  5. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/__init__.py +0 -0
  6. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/api.py +0 -0
  7. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/errors.py +0 -0
  8. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/filters.py +0 -0
  9. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/handler.py +0 -0
  10. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/mongo/__init__.py +0 -0
  11. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/mongo/filters.py +0 -0
  12. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/mongo/schema.py +0 -0
  13. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/mongo/sorting.py +0 -0
  14. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/mongo/types.py +0 -0
  15. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/mongo/utils.py +0 -0
  16. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/openapi.py +0 -0
  17. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/options.py +0 -0
  18. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/peewee/__init__.py +0 -0
  19. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/peewee/filters.py +0 -0
  20. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/peewee/openapi.py +0 -0
  21. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/peewee/options.py +0 -0
  22. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/peewee/schemas.py +0 -0
  23. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/peewee/sorting.py +0 -0
  24. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/peewee/types.py +0 -0
  25. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/py.typed +0 -0
  26. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/redoc.html +0 -0
  27. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/sorting.py +0 -0
  28. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/sqlalchemy/__init__.py +0 -0
  29. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/sqlalchemy/filters.py +0 -0
  30. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/sqlalchemy/sorting.py +0 -0
  31. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/sqlalchemy/types.py +0 -0
  32. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/swagger.html +0 -0
  33. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/types.py +0 -0
  34. {muffin_rest-4.5.0 → muffin_rest-4.5.1}/muffin_rest/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: muffin-rest
3
- Version: 4.5.0
3
+ Version: 4.5.1
4
4
  Summary: The package provides enhanced support for writing REST APIs with Muffin framework
5
5
  Home-page: https://github.com/klen/muffin-rest
6
6
  License: MIT
@@ -25,9 +25,18 @@ Classifier: Programming Language :: Python :: 3.11
25
25
  Classifier: Programming Language :: Python :: 3.8
26
26
  Classifier: Programming Language :: Python :: 3.9
27
27
  Classifier: Topic :: Internet :: WWW/HTTP
28
+ Provides-Extra: peewee
29
+ Provides-Extra: sqlalchemy
30
+ Provides-Extra: yaml
28
31
  Requires-Dist: apispec (>=4,<5)
29
32
  Requires-Dist: marshmallow (>=3.14,<4.0)
33
+ Requires-Dist: marshmallow-peewee (>=4,<5) ; extra == "peewee"
34
+ Requires-Dist: marshmallow-sqlalchemy (>=0.27.0,<0.28.0) ; extra == "sqlalchemy"
30
35
  Requires-Dist: muffin (>=0.94,<0.95)
36
+ Requires-Dist: muffin-databases (>=0.5.0,<0.6.0) ; extra == "sqlalchemy"
37
+ Requires-Dist: muffin-peewee-aio (>=0.9.6,<0.10.0) ; extra == "peewee"
38
+ Requires-Dist: pyyaml ; extra == "yaml"
39
+ Requires-Dist: sqlalchemy ; extra == "sqlalchemy"
31
40
  Project-URL: Repository, https://github.com/klen/muffin-rest
32
41
  Description-Content-Type: text/x-rst
33
42
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "muffin-rest"
3
- version = "4.5.0"
3
+ version = "4.5.1"
4
4
  description = "The package provides enhanced support for writing REST APIs with Muffin framework"
5
5
  readme = "README.rst"
6
6
  homepage = "https://github.com/klen/muffin-rest"
@@ -29,6 +29,19 @@ apispec = "^4"
29
29
  marshmallow = "^3.14"
30
30
  muffin = "^0.94"
31
31
 
32
+ # Optional dependencies
33
+ pyyaml = {version = "*", optional = true}
34
+ muffin-peewee-aio = {version = "^0.9.6", optional = true}
35
+ marshmallow-peewee = {version = "^4", optional = true}
36
+ muffin-databases = {version = "^0.5.0", optional = true}
37
+ marshmallow-sqlalchemy = {version = "^0.27.0", optional = true}
38
+ sqlalchemy = {version = "*", optional = true}
39
+
40
+ [tool.poetry.extras]
41
+ yaml = ["pyyaml"]
42
+ peewee = ["muffin-peewee-aio", "marshmallow-peewee"]
43
+ sqlalchemy = ["muffin-databases", "marshmallow-sqlalchemy", "sqlalchemy"]
44
+
32
45
  [tool.poetry.group.tests.dependencies]
33
46
  aiosqlite = "*"
34
47
  marshmallow-peewee = "^4"
@@ -47,22 +60,11 @@ ruff = "*"
47
60
  [tool.poetry.group.dev.dependencies]
48
61
  pre-commit = "*"
49
62
 
50
- [tool.poetry.group.yaml.dependencies]
51
- pyyaml = "*"
52
-
53
63
  [tool.poetry.group.example.dependencies]
54
64
  uvicorn = "*"
55
65
  muffin-peewee-aio = "^0.9.6"
56
66
  marshmallow-peewee = "^4"
57
67
 
58
- [tool.poetry.group.peewee.dependencies]
59
- muffin-peewee-aio = "^0.9.6"
60
- marshmallow-peewee = "^4"
61
-
62
- [tool.poetry.group.sqlalchemy.dependencies]
63
- muffin-databases = "^0.5.0"
64
- marshmallow-sqlalchemy = "*"
65
- sqlalchemy = "*"
66
68
 
67
69
  [tool.pytest.ini_options]
68
70
  addopts = "-xsv"
File without changes
File without changes