django-small-view-set 0.2.7__tar.gz → 0.2.9__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.
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: django-small-view-set
3
- Version: 0.2.7
4
- Summary: A lightweight Django ViewSet alternative with minimal abstraction.
3
+ Version: 0.2.9
4
+ Summary: A lightweight and explicit Django ViewSet alternative with minimal abstraction and full async support
5
5
  Home-page: https://github.com/nateonguitar/django-small-view-set
6
6
  License: MIT
7
- Keywords: django,small,viewset,view set
7
+ Keywords: django,viewset,view set,api,async,rest api,django async,lightweight
8
8
  Author: Nate Brooks
9
9
  Requires-Python: >=3.8
10
10
  Classifier: License :: OSI Approved :: MIT License
@@ -19,9 +19,9 @@ Description-Content-Type: text/markdown
19
19
 
20
20
  # Django Small View Set
21
21
 
22
- A recommended pattern and a lightweight Django ViewSet with minimal abstraction.
22
+ A lightweight and explicit Django ViewSet alternative with minimal abstraction and full async support.
23
23
 
24
- This pattern supports both standard endpoints and `async` endpoints.
24
+ Designed for clear patterns, minimal magic, and complete control over your API endpoints.
25
25
 
26
26
  ### Example Usage
27
27
 
@@ -1,8 +1,8 @@
1
1
  # Django Small View Set
2
2
 
3
- A recommended pattern and a lightweight Django ViewSet with minimal abstraction.
3
+ A lightweight and explicit Django ViewSet alternative with minimal abstraction and full async support.
4
4
 
5
- This pattern supports both standard endpoints and `async` endpoints.
5
+ Designed for clear patterns, minimal magic, and complete control over your API endpoints.
6
6
 
7
7
  ### Example Usage
8
8
 
@@ -4,13 +4,13 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "django-small-view-set"
7
- version = "0.2.7"
8
- description = "A lightweight Django ViewSet alternative with minimal abstraction."
7
+ version = "0.2.9"
8
+ description = "A lightweight and explicit Django ViewSet alternative with minimal abstraction and full async support"
9
9
  readme = "README.md"
10
10
  authors = ["Nate Brooks"]
11
11
  license = "MIT"
12
12
  repository = "https://github.com/nateonguitar/django-small-view-set"
13
- keywords = ["django", "small", "viewset", "view set"]
13
+ keywords = ["django", "viewset", "view set", "api", "async", "rest api", "django async", "lightweight"]
14
14
  packages = [
15
15
  { include = "small_view_set", from = "src" }
16
16
  ]