-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.67 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "drf-jsonmask"
dynamic = ["version"]
description = "Implements Google's partial response in Django RestFramework (Fork from Zapier's package)"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "Craig Labenz", email = "[email protected]" },
{ name = "João Luiz Lorencetti", email = "[email protected]" },
]
maintainers = [
{ name = "Christian Hartung", email = "[email protected]" },
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"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 :: Python Modules",
]
dependencies = [
"jsonmask",
"django>=4.2",
"djangorestframework>=3.14",
]
[project.urls]
Repository = "https://github.com/jllorencetti/drf-jsonmask.git"
[tool.hatch.version]
path = "drf_jsonmask/__init__.py"
[tool.coverage.run]
source = ["drf_jsonmask"]
branch = true
[tool.isort]
line_length = 119
combine_as_imports = true
include_trailing_comma = true
multi_line_output = 5
default_section = "THIRDPARTY"