-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (89 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (89 loc) · 2.18 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "djo"
version = "0.2.3"
description = "Drop-in interactive API docs for Django — Swagger UI, FastAPI-style, with zero decorators and zero extra dependencies"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "NEFORCEO", email = "n7for8572@gmail.com"},
]
maintainers = [
{name = "NEFORCEO", email = "n7for8572@gmail.com"},
]
keywords = [
"django",
"openapi",
"swagger",
"swagger-ui",
"api",
"docs",
"rest",
"autodoc"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Framework :: Django",
"Framework :: Django :: 5.2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = [
"django>=5.2.15",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-django>=4.9.0",
"ruff>=0.15.15",
"pre-commit>=4.0.0",
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
"pymdown-extensions>=10.21.3",
]
[project.urls]
Homepage = "https://github.com/NEFORCEO/djo"
Documentation = "https://djo.readthedocs.io"
Repository = "https://github.com/NEFORCEO/djo"
Issues = "https://github.com/NEFORCEO/djo/issues"
[tool.hatch.build.targets.wheel]
packages = ["djo"]
[tool.hatch.build.targets.sdist]
include = [
"/djo",
"/README.md",
"/LICENSE",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-django>=4.9.0",
"ruff>=0.15.15",
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
"pymdown-extensions>=10.21.3",
]
[tool.ruff]
line-length = 110
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = [
"--strict-markers",
"--strict-config",
]
testpaths = ["tests"]