diff --git a/Makefile b/Makefile index b3152823e5..67c3573b9c 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +.PHONY: docs + init: pip install -r requirements.txt @@ -30,3 +32,11 @@ charade: publish: python setup.py sdist upload python setup.py bdist_wheel upload + + +docs-init: + pip install -r docs/requirements.txt + +docs: + cd docs && make html + @echo "\033[95m\n\nInstalled! Docs homepage is at docs/_build/html/index.html.\n\033[0m" diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000000..3049177233 --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1 @@ +Sphinx==1.1.3