-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
67 lines (62 loc) · 1.43 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
authors = [
{name = "Executable Book Project", email = "[email protected]"}
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [
"sphinx>=5",
"packaging"
]
description = "Latex specific features for jupyter book"
dynamic = [
"version"
]
license = {file = "LICENSE"}
name = "sphinx-jupyterbook-latex"
readme = "README.md"
requires-python = ">=3.9"
[project.optional-dependencies]
code_style = [
"pre-commit~=2.12"
]
myst = [
"myst-nb>=1.0.0"
]
rtd = [
"myst-parser",
"sphinx-book-theme",
"sphinx-design",
"sphinx-jupyterbook-latex"
]
testing = [
"coverage>=6.0",
"myst-nb>=1.0.0",
"pytest-cov>=3",
"pytest-regressions",
"pytest>=7.1",
"sphinx-external-toc>=1.0.0",
"sphinxcontrib-bibtex>=2.6.0",
"texsoup"
]
[project.urls]
Homepage = "https://executablebooks.org/"
[tool.flit.module]
name = "sphinx_jupyterbook_latex"
[tool.mypy]
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_unused_ignores = true