-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (75 loc) · 2.23 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (75 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "django-api-mixins"
version = "2.0.3"
description = "Django REST Framework mixins for ViewSets and APIViews - APIMixin, ModelMixin, RelationshipFilterMixin, RoleBasedFilterMixin. Simplify Django API development with reusable mixins."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Subhransu Das", email = "subhransud525@gmail.com"},
]
keywords = [
"django",
"django-rest-framework",
"drf",
"django-api",
"mixins",
"api",
"viewsets",
"apiview",
"rest-api",
"django-mixins",
"django-api-mixins",
"serializer",
"queryset",
"filtering",
"role-based",
"django-filters",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"Django>=3.2",
"djangorestframework>=3.12",
]
[project.optional-dependencies]
filters = [
"django-filter>=23.0",
]
spectacular = [
"drf-spectacular>=0.26.0",
]
all = [
"django-filter>=23.0",
"drf-spectacular>=0.26.0",
]
[project.urls]
Homepage = "https://github.com/subhrans/django-api-mixins"
Documentation = "https://github.com/subhrans/django-api-mixins#readme"
Repository = "https://github.com/Subhrans/django-api-mixins"
Issues = "https://github.com/subhrans/django-api-mixins/issues"
[tool.setuptools]
packages = ["django_api_mixins", "django_api_mixins.filter_backends"]
# Avoid License-File in METADATA (PEP 639); PyPI/twine may reject it. We use license = {text = "MIT"} instead.
license-files = []
[tool.setuptools.package-data]
"*" = ["*.txt", "*.md"]