-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.47 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
46
47
48
49
50
51
52
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm>=8"]
[project]
name = "mkdocs-nbconvert"
readme = { file = 'README.md', content-type = 'text/markdown' }
authors = [{ name = "liu xue yan", email = "[email protected]" }]
description = "A MkDocs plug-in provides a source parser for *.ipynb Jupyter notebook files, base on nbconvert."
keywords = [
"mkdocs",
"mkdocs-plugin",
"jupyter",
"notebook",
"jupyter-notebook",
"markdown",
"md",
"nbconvert",
]
license = { text = "BSD-3-Clause" }
classifiers = [
"License :: OSI Approved :: BSD License",
# "Development Status :: 1 - Planning",
# "Development Status :: 2 - Pre-Alpha",
# "Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
# "Development Status :: 7 - Inactive",
"Topic :: Documentation",
"Intended Audience :: Developers",
"Programming Language :: Python",
]
dynamic = ["version"]
# requires
dependencies = ["mkdocs>=1.4", "nbconvert>=4.2"]
# Project links
[project.urls]
Homepage = "https://tanbro.github.io/mkdocs-nbconvert"
Repository = "https://github.com/tanbro/mkdocs-nbconvert"
Documentation = "https://tanbro.github.io/mkdocs-nbconvert"
[project.entry-points."mkdocs.plugins"]
nbconvert = "mkdocs_nbconvert:NbConvertPlugin"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
write_to = "src/mkdocs_nbconvert/_version.py"