feat: init
This commit is contained in:
commit
d649185ef6
17 changed files with 1493 additions and 0 deletions
29
tox.ini
Normal file
29
tox.ini
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
[tox]
|
||||
skipsdist = true
|
||||
maxversion = 3.7.0
|
||||
isolated_build = True
|
||||
|
||||
|
||||
[testenv:docgen]
|
||||
description = HTML documentation
|
||||
basepython = python3
|
||||
allowlist_externals =
|
||||
tox
|
||||
commands =
|
||||
tox -e docgen-html
|
||||
tox -e docgen-md
|
||||
tox -e docgen-pdf
|
||||
|
||||
|
||||
[testenv:docgen-html]
|
||||
description = HTML documentation
|
||||
basepython = python3
|
||||
allowlist_externals =
|
||||
sphinx-build
|
||||
doxygen
|
||||
deps =
|
||||
sphinx-git
|
||||
sphinx >= 4.3.2, < 5
|
||||
urllib3 >=1.26.6, < 2
|
||||
commands =
|
||||
sphinx-build -d "{toxinidir}/build/docs/_tree/html" docs "build/docs/html" --color -W -bhtml {posargs}
|
||||
Loading…
Add table
Add a link
Reference in a new issue