-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
83 lines (76 loc) · 2.51 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = [
"hatchling>=1.3.1",
"hatch-nodejs-version>=0.1.0",
"jupyterlab>=3.0,==3.*",
]
build-backend = "hatchling.build"
[project]
name = "jupyterlab-markup"
description = "Extensible markdown rendering for JupyterLab, powered by markdown-it."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
authors = [
{ name = "Angus Hollands", email = "goosey15@gmail.com" },
]
keywords = [
"Jupyter",
"JupyterLab",
"JupyterLab3",
"Markdown",
"MarkdownIt",
]
classifiers = [
"Framework :: Jupyter",
"Framework :: Jupyter :: JupyterLab",
"Framework :: Jupyter :: JupyterLab :: 3",
"Framework :: Jupyter :: JupyterLab :: Extensions",
"Framework :: Jupyter :: JupyterLab :: Extensions :: Mime Renderers",
"Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
dependencies = [
]
dynamic = [
"version",
]
[project.optional-dependencies]
docs = [
"docutils >=0.18",
"jupyterlite ==0.1.0b12",
"myst-parser",
"pkginfo",
"pydata-sphinx-theme >=0.10.0,<0.11",
"sphinx >=5,<6",
"sphinx-copybutton",
"sphinx-jsonschema",
"tomli",
]
[project.urls]
Documentation = "https://jupyterlab-markup.rtfd.io"
Homepage = "https://github.com/agoose77/jupyterlab-markup.git"
Issues = "https://github.com/agoose77/jupyterlab-markup/issues"
Pypi = "https://pypi.org/project/jupyterlab-markup"
Source = "https://github.com/agoose77/jupyterlab-markup"
[tool.hatch.version]
source = "nodejs"
[tool.hatch.build.targets.wheel.shared-data]
"install.json" = "share/jupyter/labextensions/@agoose77/jupyterlab-markup/install.json"
"jupyterlab_markup/labextension" = "share/jupyter/labextensions/@agoose77/jupyterlab-markup"
[tool.hatch.build.targets.sdist]
artifacts = ["jupyterlab_markup/labextension"]
[tool.hatch.build.hooks.jupyter-builder]
dependencies = ["hatch-jupyter-builder"]
build-function = "hatch_jupyter_builder.npm_builder"
#skip_if_exists = ["jupyterlab_markup/labextension/static/style.js"] TODO - wait for fix in hatch-jupyter-builder
ensured-targets = ["jupyterlab_markup/labextension/static/style.js", "jupyterlab_markup/labextension/package.json"]
install-pre-commit-hook = true
[tool.hatch.build.hooks.jupyter-builder.build-kwargs]
build_cmd = "build:prod"
npm = "jlpm"