-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
77 lines (69 loc) · 2.22 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "djangorestframework-dataclasses"
version = "1.3.1"
description = "A dataclasses serializer for Django REST Framework"
readme = "README.rst"
license = { file = "LICENSE" }
authors = [
{ name = "Oxan van Leeuwen", email = "[email protected]" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"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",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
requires-python = ">= 3.7"
dependencies = [
"django >= 2.0",
"djangorestframework >= 3.9",
"typing_extensions >= 3.7.4; python_version < '3.8'"
]
[project.optional-dependencies]
dev = [
"django-stubs",
"djangorestframework-stubs",
"mypy ~= 1.8.0",
]
test = [
"coverage[toml]",
"tox",
]
[project.urls]
Repository = "https://github.com/oxan/djangorestframework-dataclasses"
Documentation = "https://github.com/oxan/djangorestframework-dataclasses/blob/master/README.rst"
Changelog = "https://github.com/oxan/djangorestframework-dataclasses/blob/master/CHANGELOG.rst"
Sponsor = "https://github.com/sponsors/oxan"
[tool.setuptools.package-data]
"rest_framework_dataclasses" = ["py.typed"]
[tool.coverage.run]
branch = true
source = ["rest_framework_dataclasses"]
[tool.mypy]
packages = ["rest_framework_dataclasses"]
plugins = [
"mypy_django_plugin.main",
"mypy_drf_plugin.main",
]
[tool.django-stubs]
django_settings_module = "tests.django_settings"