-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (50 loc) · 1.21 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
[project]
name = "dauto"
version = "1.3.0"
authors = [
{ name = "Jesús Enrique Fuentes González", email = "jesusefg12@gmail.com" },
{ name = "José Javier Quesada Madrigal", email = "xocechka@gmail.com" },
]
description = "A toolkit for django common usecases"
readme = "Readme.md"
license = { file="LICENSE" }
requires-python = ">= 3.12.0"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Framework :: Django"
]
dependencies = [
"django",
]
[project.optional-dependencies]
rest=["djangorestframework"]
polymorphic-rest=["django-rest-polymorphic"]
polymorphic-model=["django-polymorphic"]
django-restql=["django-restql"]
dev=[
"nox>=2025.2.9"
]
docs=[
"pylliterate",
"mkdocs",
"mkdocs-material",
"mkdocs-material-extensions"
]
all=[
"djangorestframework",
"django-rest-polymorphic",
"django-polymorphic",
"pylliterate",
"mkdocs",
"mkdocs-material",
"mkdocs-material-extensions",
"nox>=2025.2.9"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {}