-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.12 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pyos-lessons"
dynamic = [
"version"
]
dependencies = [
"pyos-sphinx-theme",
"myst-nb",
"sphinx",
"sphinx-autobuild",
"sphinx-copybutton",
"sphinx-design",
"sphinx-favicon",
"sphinx-togglebutton",
# XML feed for analytics
"sphinx-sitemap",
# Support for social / adds meta tags
"sphinxext-opengraph",
"sphinx-inline-tabs",
# for project cards
"matplotlib",
"pandas",
"sphinx-codeautolink",
"rich",
]
[project.optional-dependencies]
dev = [
# for general build workflows
"nox",
# for prose linting
"vale",
# for managing translation files
"sphinx-intl",
"jupytext",
]
[tool.hatch.build.targets.wheel]
bypass-selection = true
[tool.hatch]
version.source = "vcs"
# https://github.com/codespell-project/codespell#usage
[tool.codespell]
ignore-words = "codespell-ignore.txt"
skip = "./.git,./.nox,./_static,./_build,codespell-ignore.txt,*.svg"
[tool.jupytext]
# Pair ipynb notebooks to py:percent text notebooks
formats = "ipynb,myst"