21 lines
520 B
INI
21 lines
520 B
INI
[tox]
|
|
envlist = blog
|
|
skipsdist = True
|
|
|
|
[testenv:blog]
|
|
deps =
|
|
sphinx
|
|
sphinx-autobuild
|
|
sphinx-typlog-theme
|
|
sphinxcontrib-plantuml
|
|
ablog
|
|
commands =
|
|
sphinx-autobuild -E -b html source/ build/html/
|
|
|
|
[testenv:cv]
|
|
allowlist_externals = /usr/bin/pandoc
|
|
commands = pandoc -V geometry:margin=1.5in --from=markdown -o build/cv.pdf source/cv.md
|
|
|
|
[testenv:cover]
|
|
allowlist_externals = /usr/bin/pandoc
|
|
commands = pandoc -V geometry:margin=1.5in --from=markdown -o build/cover-letter.pdf source/cover-letter.md
|