-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.17 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
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm[toml]>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-asf-theme"
requires-python = ">=3.10"
authors = [
{name="ASF APD/Tools Team", email="[email protected]"},
]
description = "An extension of the MkDocs Material Theme for ASF"
readme = "README.md"
license = {text = "BSD-3-Clause"}
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mkdocs",
"mkdocs-material>=9.4.2,<10",
]
dynamic = ["version"]
[project.entry-points."mkdocs.themes"]
asf-theme = "asf_theme"
[project.urls]
Homepage = "https://github.com/ASFHyP3/mkdocs-asf-theme"
"Bug Tracker" = "https://github.com/ASFHyP3/mkdocs-asf-theme/issues"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools_scm]