Merge pull request #1742 from kevinburke/docs

Add make target to build the documentation
This commit is contained in:
2013-11-20 01:02:38 -08:00
2 changed files with 11 additions and 0 deletions
+10
View File
@@ -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\nBuild successful! View the docs homepage at docs/_build/html/index.html.\n\033[0m"
+1
View File
@@ -0,0 +1 @@
Sphinx==1.1.3