mirror of
https://github.com/drewcassidy/quicktex.git
synced 2024-09-13 06:37:34 +00:00
Set min version for sphinx tools
This commit is contained in:
parent
82f079f1b6
commit
9a57b096f5
@ -13,12 +13,13 @@
|
|||||||
# import os
|
# import os
|
||||||
# import sys
|
# import sys
|
||||||
# sys.path.insert(0, os.path.abspath('..'))
|
# sys.path.insert(0, os.path.abspath('..'))
|
||||||
|
from datetime import date
|
||||||
|
|
||||||
|
|
||||||
# -- Project information -----------------------------------------------------
|
# -- Project information -----------------------------------------------------
|
||||||
|
|
||||||
project = 'Quicktex'
|
project = 'Quicktex'
|
||||||
copyright = '2021, Andrew Cassidy'
|
copyright = f'{date.today().year}, Andrew Cassidy'
|
||||||
author = 'Andrew Cassidy'
|
author = 'Andrew Cassidy'
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
@ -28,11 +29,14 @@ author = 'Andrew Cassidy'
|
|||||||
# ones.
|
# ones.
|
||||||
extensions = [
|
extensions = [
|
||||||
'myst_parser',
|
'myst_parser',
|
||||||
|
'sphinx_click',
|
||||||
'sphinx_rtd_theme',
|
'sphinx_rtd_theme',
|
||||||
'sphinx.ext.autodoc',
|
'sphinx.ext.autodoc',
|
||||||
'sphinx.ext.intersphinx',
|
'sphinx.ext.intersphinx',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
myst_heading_anchors = 2
|
||||||
|
|
||||||
# Add any paths that contain templates here, relative to this directory.
|
# Add any paths that contain templates here, relative to this directory.
|
||||||
templates_path = ['_templates']
|
templates_path = ['_templates']
|
||||||
|
|
||||||
|
@ -37,7 +37,12 @@ dynamic = ["version"]
|
|||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
tests = ["parameterized"]
|
tests = ["parameterized"]
|
||||||
docs = ["sphinx", "myst-parser", "sphinx-rtd-theme"]
|
docs = [
|
||||||
|
"Sphinx >= 3.5",
|
||||||
|
"sphinx-click >= 2.7",
|
||||||
|
"sphinx-rtd-theme",
|
||||||
|
"myst-parser >= 0.14",
|
||||||
|
]
|
||||||
stubs = ["pybind11-stubgen"]
|
stubs = ["pybind11-stubgen"]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
|
Loading…
Reference in New Issue
Block a user