forked from ndev-kit/ndev-kit.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.55 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 = "docs"
dynamic = ["version"]
description = "Documentation site for ndev kit"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Tim Monko"},
{email = "timmonko@gmail.com"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Image Processing",
]
requires-python = ">=3.10"
dependencies = [
"mkdocs",
"mkdocs-autorefs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python",
"mkdocs-jupyter",
"mkdocs-pdf",
"mkdocs-spellcheck[all]",
"mkdocs-literate-nav",
"mkdocs-table-reader-plugin",
"mkdocs-multirepo-plugin", # For fetching docs from multiple repos
]
[project.optional-dependencies]
dev = [
"pre-commit",
]
[project.urls]
"Bug Tracker" = "https://github.com/ndev-kit/docs/issues"
"Documentation" = "https://github.com/ndev-kit/docs#README.md"
"Source Code" = "https://github.com/ndev-kit/docs"
"User Support" = "https://github.com/ndev-kit/docs/issues"
[build-system]
requires = ["setuptools>=42.0.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []