-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
75 lines (68 loc) · 2.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mkdocs-swagger-ui-tag"
version = "0.7.0"
description = "A MkDocs plugin supports for add Swagger UI in page."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
]
dependencies = [
"beautifulsoup4>=4.13.3",
]
keywords = [
"mkdocs",
"plugin",
"swagger-ui",
"openapi"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Documentation",
"Topic :: Text Processing"
]
[project.urls]
Homepage = "https://blueswen.github.io/mkdocs-swagger-ui-tag/"
Source = "https://github.com/blueswen/mkdocs-swagger-ui-tag"
Issues = "https://github.com/blueswen/mkdocs-swagger-ui-tag/issues"
History = "https://github.com/blueswen/mkdocs-swagger-ui-tag/blob/main/CHANGELOG"
[project.entry-points."mkdocs.plugins"]
swagger-ui-tag = "mkdocs_swagger_ui_tag.plugin:SwaggerUIPlugin"
[dependency-groups]
dev = [
"bandit>=1.7.10",
"click>=8.1.8",
"codecov>=2.1.13",
"mkdocs>=1.6.1",
"mkdocs-glightbox>=0.4.0",
"mkdocs-material>=9.6.7",
"pyright>=1.1.396",
"pytest>=8.3.5",
"pytest-cov>=5.0.0",
"pytest-playwright>=0.5.2",
"ruff>=0.9.10",
"twine>=6.1.0",
]
[tool.pyright]
include = ["mkdocs_swagger_ui_tag/plugin.py", "tests/test_builds.py"]
[tool.hatch.build.targets.wheel]
include = ["/mkdocs_swagger_ui_tag"]
[tool.hatch.build.targets.sdist]
include = ["/mkdocs_swagger_ui_tag"]