Initialise the new module boilerplate

This commit is contained in:
Luke Murphy
2019-07-08 11:40:40 +02:00
commit 1af9c06d5a
26 changed files with 546 additions and 0 deletions

12
documentation/Makefile Normal file
View File

@ -0,0 +1,12 @@
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SOURCEDIR = source
BUILDDIR = build
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
.PHONY: help Makefile
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

View File

@ -0,0 +1,5 @@
*********
Changelog
*********
.. include:: ../../CHANGELOG.rst

View File

@ -0,0 +1 @@
.. include:: ../../CODE_OF_CONDUCT.rst

View File

@ -0,0 +1,7 @@
author = 'decentral1se'
copyright = '2019, decentral1se'
html_static_path = ['_static']
html_theme = 'alabaster'
master_doc = 'index'
project = 'merkle-tree-stream'
templates_path = ['_templates']

View File

@ -0,0 +1 @@
.. include:: ../../CONTRIBUTING.rst

View File

@ -0,0 +1,12 @@
.. include:: ../../README.rst
:end-before: _documentation
Contents:
=========
.. toctree::
install
contribute
changelog
code-of-conduct

View File

@ -0,0 +1,11 @@
************
Installation
************
.. code-block:: bash
$ pip install merkle-tree-stream
.. note::
This tool only supports Python >= 3.6.