-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
69 lines (57 loc) · 1.76 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
[build-system]
requires = ["sphinx-theme-builder>=0.2.0b2"]
build-backend = "sphinx_theme_builder"
[project]
name = "qiskit-sphinx-theme"
description = "A Sphinx theme for Qiskit and Qiskit Ecosystem projects"
readme = "README.md"
dynamic = ["version"]
license = { file = "LICENSE" }
authors = [{ name = "Qiskit Development Team", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Documentation",
"Framework :: Sphinx :: Theme",
]
dependencies = [
"docutils",
# Keep in sync with Furo's constraint.
"sphinx>=6.0,<9.0",
# See CONTRIBUTING.md for how to upgrade Furo.
"furo==2024.8.6",
]
[project.entry-points."sphinx.html_themes"]
qiskit-ecosystem = "qiskit_sphinx_theme"
[project.urls]
"Bug Tracker" = "https://github.com/Qiskit/qiskit_sphinx_theme/issues"
"Source Code" = "https://github.com/Qiskit/qiskit_sphinx_theme"
[tool.sphinx-theme-builder]
node-version = "18.16.1"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
[tool.black]
line-length = 100
target-version = ["py37", "py38", "py39", "py310", "py311"]
[tool.isort]
profile = "black"
[tool.mypy]
disallow_untyped_defs = true
show_error_codes = true
no_implicit_optional = true
warn_return_any = true
warn_unused_ignores = true
exclude = ["example_docs", "docs_guide", "tests"]
check_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"furo",
"jupyter_sphinx.thebelab"
]
ignore_missing_imports = true