-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.65 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
[project]
name = "mkdocs-dracula-theme"
version = "1.0.9"
authors = [
{ name="Fernando Celmer", email="email@fernandocelmer.com" },
]
maintainers = [
{ name="Fernando Celmer", email="email@fernandocelmer.com" },
{ name="Lautaro Linquimán", email="lylinquiman@gmail.com" }
]
license = {file = "LICENSE"}
description = "Dark theme for Mkdocs"
readme = "README.md"
requires-python = ">=3.9"
dependencies = ["mkdocs (>=1.6.1,<2.0.0)"]
keywords = ["mkdocs", "dracula", "theme", "dark", "documentation"]
classifiers = [
'Development Status :: 4 - Beta',
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Natural Language :: English',
"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",
]
[project.urls]
Homepage = "https://draculatheme.com/mkdocs"
Issues = "https://github.com/dracula/mkdocs/issues"
Repository = "https://github.com/dracula/mkdocs"
Documentation = "https://dracula.github.io/mkdocs"
Changelog = "https://dracula.github.io/mkdocs/nav/development/release-notes"
[tool.poetry]
name = "mkdocs-dracula-theme"
version = "1.0.9"
description = "Dark theme for Mkdocs"
authors = ["Fernando Celmer <email@fernandocelmer.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9.0"
mkdocs = { version = ">=1.6.1,<2.0.0" }
[tool.poetry.group.dev.dependencies]
build = "^1.3.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."mkdocs.themes"]
dracula = "mkdocs_dracula_theme"