-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.42 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-respect"
dynamic = ["version"]
description = "MkDocs theme for the Respect organization — minimalist, monochrome, Ubuntu typography."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [{ name = "Respect" }]
keywords = ["mkdocs", "theme", "documentation", "respect"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: HTML",
]
dependencies = [
"mkdocs>=1.5",
"Pygments>=2.16",
]
[project.optional-dependencies]
dev = ["pymdown-extensions>=10"]
[project.urls]
Homepage = "https://respect.github.io"
Repository = "https://github.com/Respect/mkdocs-respect"
[project.entry-points."mkdocs.themes"]
respect = "mkdocs_respect"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.dynamic]
version = { attr = "mkdocs_respect.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
mkdocs_respect = [
"*.html",
"*.yml",
"partials/*.html",
"css/*.css",
"js/*.js",
"img/*",
]