-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
66 lines (62 loc) · 1.84 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mkdocs-glightbox"
version = "0.5.2"
description = "MkDocs plugin supports image lightbox with GLightbox."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{name = "Blueswen", email = "blueswen.tw@gmail.com"}
]
dependencies = [
"selectolax>=0.3.29",
]
keywords = [
"mkdocs",
"plugin",
"glightbox"
]
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.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Documentation",
"Topic :: Text Processing"
]
[project.urls]
Homepage = "https://blueswen.github.io/mkdocs-glightbox/"
Source = "https://github.com/blueswen/mkdocs-glightbox"
Issues = "https://github.com/blueswen/mkdocs-glightbox/issues"
History = "https://github.com/blueswen/mkdocs-glightbox/blob/main/CHANGELOG"
[project.entry-points."mkdocs.plugins"]
glightbox = "mkdocs_glightbox.plugin:LightboxPlugin"
[dependency-groups]
dev = [
"bandit>=1.7.10",
"codecov>=2.1.13",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.12",
"pytest>=8.3.5",
"pytest-benchmark>=4.0.0",
"pytest-cov>=5.0.0",
"pytest-playwright>=0.5.2",
"pytest-timeout>=2.4.0",
"ruff>=0.11.7",
"twine>=6.1.0",
]