flat-tree implementation coming down the tubes
This commit is contained in:
12
documentation/Makefile
Normal file
12
documentation/Makefile
Normal 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)
|
0
documentation/source/_static/.git-dont-delete
Normal file
0
documentation/source/_static/.git-dont-delete
Normal file
0
documentation/source/_templates/.git-dont-delete
Normal file
0
documentation/source/_templates/.git-dont-delete
Normal file
5
documentation/source/changelog.rst
Normal file
5
documentation/source/changelog.rst
Normal file
@ -0,0 +1,5 @@
|
||||
*********
|
||||
Changelog
|
||||
*********
|
||||
|
||||
.. include:: ../../CHANGELOG.rst
|
6
documentation/source/code-of-conduct.rst
Normal file
6
documentation/source/code-of-conduct.rst
Normal file
@ -0,0 +1,6 @@
|
||||
.. _code-of-conduct:
|
||||
|
||||
Code of Conduct
|
||||
***************
|
||||
|
||||
.. include:: ../../CODE_OF_CONDUCT.rst
|
8
documentation/source/conf.py
Normal file
8
documentation/source/conf.py
Normal file
@ -0,0 +1,8 @@
|
||||
author = 'decentral1se'
|
||||
copyright = '2019, decentral1se'
|
||||
html_static_path = ['_static']
|
||||
html_theme = 'alabaster'
|
||||
master_doc = 'index'
|
||||
project = 'flat_tree'
|
||||
templates_path = ['_templates']
|
||||
extensions = ['sphinx.ext.autodoc', 'sphinx_autodoc_typehints']
|
5
documentation/source/contribute.rst
Normal file
5
documentation/source/contribute.rst
Normal file
@ -0,0 +1,5 @@
|
||||
**********
|
||||
Contribute
|
||||
**********
|
||||
|
||||
.. include:: ../../CONTRIBUTING.rst
|
14
documentation/source/index.rst
Normal file
14
documentation/source/index.rst
Normal file
@ -0,0 +1,14 @@
|
||||
.. include:: ../../README.rst
|
||||
:end-before: _documentation
|
||||
|
||||
Table of Contents
|
||||
*****************
|
||||
|
||||
.. toctree::
|
||||
|
||||
install
|
||||
modules-api
|
||||
other-impls
|
||||
contribute
|
||||
changelog
|
||||
code-of-conduct
|
11
documentation/source/install.rst
Normal file
11
documentation/source/install.rst
Normal file
@ -0,0 +1,11 @@
|
||||
*******
|
||||
Install
|
||||
*******
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
$ pip install flat_tree
|
||||
|
||||
.. note::
|
||||
|
||||
Only Python >= 3.6 is supported.
|
9
documentation/source/modules-api.rst
Normal file
9
documentation/source/modules-api.rst
Normal file
@ -0,0 +1,9 @@
|
||||
***********
|
||||
Modules API
|
||||
***********
|
||||
|
||||
.. automodule:: flat_tree.accessor
|
||||
:members:
|
||||
|
||||
.. automodule:: flat_tree.iterator
|
||||
:members:
|
9
documentation/source/other-impls.rst
Normal file
9
documentation/source/other-impls.rst
Normal file
@ -0,0 +1,9 @@
|
||||
.. _other-implementations:
|
||||
|
||||
Other Implementations
|
||||
*********************
|
||||
|
||||
* https://github.com/mafintosh/flat-tree
|
||||
* https://github.com/datrs/flat-tree
|
||||
* https://github.com/bcomnes/flattree
|
||||
* https://github.com/datcxx/flat-tree
|
Reference in New Issue
Block a user