-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (43 loc) · 1.28 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.2"]
[project]
authors = [{name = "Lotrèk", email = "[email protected]"}]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"djangorestframework>=3.10.0,<4.0.0",
"Django>=3.2",
"pydantic~=2.9.2",
]
description = "Django json field empowered by pydantic"
dynamic = ["version"]
keywords = ["django", "pydantic", "django pydantic", "django json", "json schema", "django form"]
license = {text = "MIT"}
name = "django-structured-json-field"
requires-python = ">= 3.8"
[project.readme]
content-type = "text/markdown"
file = "README.md"
[project.urls]
Homepage = "https://github.com/lotrekagency/django-structured-json-field"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages]
find = {namespaces = false}
[tool.distutils.bdist_wheel]
universal = true
[tool.semantic_release]
version_variables = ["setup.py:__version__", "structured/__init__.py:__version__",]
[tool.semantic_release.branches.master]
match = "master"
prerelease = false
[tool.semantic_release.branches."next"]
match = "next"
prerelease = true
prerelease_token = "beta"