Replace mkdocs by sphinx

This commit is contained in:
2021-05-24 09:33:45 -05:00
parent 983e5fe117
commit 3f117e9171
22 changed files with 69 additions and 794 deletions

View File

@@ -20,10 +20,9 @@ dist-upload:
$(PYTHON) -m twine upload dist/*
docs:
rm -rf ../docs/$(VERSION) html
mkdocs build -d ../docs/$(VERSION)/
pdoc3 --html miplearn
mv -v html ../docs/$(VERSION)/api
rm -rf ../docs/$(VERSION)
cd docs; make clean; make dirhtml
rsync -avP --delete-after docs/_build/dirhtml/ ../docs/$(VERSION)
install-deps: