We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 947375e commit 4b69798Copy full SHA for 4b69798
Makefile
@@ -1,3 +1,5 @@
1
+.PHONY: docs
2
+
3
init:
4
pip install -r requirements.txt
5
@@ -30,3 +32,11 @@ charade:
30
32
publish:
31
33
python setup.py sdist upload
34
python setup.py bdist_wheel upload
35
36
37
+docs-init:
38
+ pip install -r docs/requirements.txt
39
40
+docs:
41
+ cd docs && make html
42
+ @echo "\033[95m\n\nInstalled! Docs homepage is at docs/_build/html/index.html.\n\033[0m"
docs/requirements.txt
@@ -0,0 +1 @@
+Sphinx==1.1.3
0 commit comments