-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
53 lines (46 loc) · 1.01 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jupyterlite-sphinx"
dynamic = ["version"]
description = "Sphinx extension for deploying JupyterLite"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "JupyterLite Contributors" },
]
dependencies = [
"docutils",
"jupyter_server",
"jupyterlab_server",
"jupyterlite-core >=0.2,<0.5",
"nbformat",
"sphinx>=4",
]
[project.optional-dependencies]
dev = [
"hatch",
]
docs = [
"myst_parser",
"pydata-sphinx-theme",
"jupyterlite-xeus>=0.1.8,<0.3.0",
]
[tool.hatch.version]
path = "jupyterlite_sphinx/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/jupyterlite_sphinx",
]
[tool.hatch.envs.docs]
features = ["docs"]
[tool.hatch.envs.docs.scripts]
build = "sphinx-build -W -b html docs docs/build/html"
serve = "python -m http.server --directory docs/build/html"
[[tool.mypy.overrides]]
module = [
"voici",
]
ignore_missing_imports = true