- commit
- a1646ccf6ff68f4f4d5720f7118e236dd6e82831
- parent
- 090989371c74a485d91a8401b831aca454db76d2
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2018-08-03 10:56
rm docs
Diffstat
| M | README.rst | 18 | ------------------ |
| D | docs/Makefile | 177 | ------------------------------------------------------------ |
| D | docs/make.bat | 242 | ------------------------------------------------------------ |
| D | docs/source/actions.rst | 5 | ----- |
| D | docs/source/conf.py | 265 | ------------------------------------------------------------ |
| D | docs/source/deferred.rst | 6 | ------ |
| D | docs/source/index.rst | 21 | --------------------- |
| D | docs/source/map.rst | 6 | ------ |
| D | docs/source/protocol.rst | 5 | ----- |
| D | docs/source/quickstart.rst | 4 | ---- |
| M | setup.cfg | 5 | ----- |
11 files changed, 0 insertions, 754 deletions
diff --git a/README.rst b/README.rst
@@ -23,21 +23,6 @@ laneya consists of two programs: A server called ``laneyad`` and a client 23 23 called ``laneya``. 24 24 25 2526 -1 Build Documentation27 -1 -------------------28 -129 -1 An HTML documentation can be automatically generated from source code using30 -1 `sphinx`_::31 -132 -1 pip install sphinx33 -1 python setup.py build_sphinx34 -1 xdg-open docs/build/html/index.html35 -136 -1 To add a new module to the documentation, create a corresponding file in37 -1 ``docs/source/`` and add an entry to the table of contents in38 -1 ``docs/source/index.rst``.39 -140 -141 26 Run Tests 42 27 --------- 43 28 @@ -55,6 +40,3 @@ Alternatively you can run the tests manually:: 55 40 flake8 56 41 nosetests 57 42 xdg-open .cover/index.html58 -159 -160 -1 .. _sphinx: http://sphinx-doc.org
diff --git a/docs/Makefile b/docs/Makefile
@@ -1,177 +0,0 @@1 -1 # Makefile for Sphinx documentation2 -1 #3 -14 -1 # You can set these variables from the command line.5 -1 SPHINXOPTS =6 -1 SPHINXBUILD = sphinx-build7 -1 PAPER =8 -1 BUILDDIR = build9 -110 -1 # User-friendly check for sphinx-build11 -1 ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)12 -1 $(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)13 -1 endif14 -115 -1 # Internal variables.16 -1 PAPEROPT_a4 = -D latex_paper_size=a417 -1 PAPEROPT_letter = -D latex_paper_size=letter18 -1 ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source19 -1 # the i18n builder cannot share the environment and doctrees with the others20 -1 I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source21 -122 -1 .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext23 -124 -1 help:25 -1 @echo "Please use \`make <target>' where <target> is one of"26 -1 @echo " html to make standalone HTML files"27 -1 @echo " dirhtml to make HTML files named index.html in directories"28 -1 @echo " singlehtml to make a single large HTML file"29 -1 @echo " pickle to make pickle files"30 -1 @echo " json to make JSON files"31 -1 @echo " htmlhelp to make HTML files and a HTML help project"32 -1 @echo " qthelp to make HTML files and a qthelp project"33 -1 @echo " devhelp to make HTML files and a Devhelp project"34 -1 @echo " epub to make an epub"35 -1 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"36 -1 @echo " latexpdf to make LaTeX files and run them through pdflatex"37 -1 @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"38 -1 @echo " text to make text files"39 -1 @echo " man to make manual pages"40 -1 @echo " texinfo to make Texinfo files"41 -1 @echo " info to make Texinfo files and run them through makeinfo"42 -1 @echo " gettext to make PO message catalogs"43 -1 @echo " changes to make an overview of all changed/added/deprecated items"44 -1 @echo " xml to make Docutils-native XML files"45 -1 @echo " pseudoxml to make pseudoxml-XML files for display purposes"46 -1 @echo " linkcheck to check all external links for integrity"47 -1 @echo " doctest to run all doctests embedded in the documentation (if enabled)"48 -149 -1 clean:50 -1 rm -rf $(BUILDDIR)/*51 -152 -1 html:53 -1 $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html54 -1 @echo55 -1 @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."56 -157 -1 dirhtml:58 -1 $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml59 -1 @echo60 -1 @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."61 -162 -1 singlehtml:63 -1 $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml64 -1 @echo65 -1 @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."66 -167 -1 pickle:68 -1 $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle69 -1 @echo70 -1 @echo "Build finished; now you can process the pickle files."71 -172 -1 json:73 -1 $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json74 -1 @echo75 -1 @echo "Build finished; now you can process the JSON files."76 -177 -1 htmlhelp:78 -1 $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp79 -1 @echo80 -1 @echo "Build finished; now you can run HTML Help Workshop with the" \81 -1 ".hhp project file in $(BUILDDIR)/htmlhelp."82 -183 -1 qthelp:84 -1 $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp85 -1 @echo86 -1 @echo "Build finished; now you can run "qcollectiongenerator" with the" \87 -1 ".qhcp project file in $(BUILDDIR)/qthelp, like this:"88 -1 @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/laneya.qhcp"89 -1 @echo "To view the help file:"90 -1 @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/laneya.qhc"91 -192 -1 devhelp:93 -1 $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp94 -1 @echo95 -1 @echo "Build finished."96 -1 @echo "To view the help file:"97 -1 @echo "# mkdir -p $$HOME/.local/share/devhelp/laneya"98 -1 @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/laneya"99 -1 @echo "# devhelp"100 -1101 -1 epub:102 -1 $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub103 -1 @echo104 -1 @echo "Build finished. The epub file is in $(BUILDDIR)/epub."105 -1106 -1 latex:107 -1 $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex108 -1 @echo109 -1 @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."110 -1 @echo "Run \`make' in that directory to run these through (pdf)latex" \111 -1 "(use \`make latexpdf' here to do that automatically)."112 -1113 -1 latexpdf:114 -1 $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex115 -1 @echo "Running LaTeX files through pdflatex..."116 -1 $(MAKE) -C $(BUILDDIR)/latex all-pdf117 -1 @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."118 -1119 -1 latexpdfja:120 -1 $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex121 -1 @echo "Running LaTeX files through platex and dvipdfmx..."122 -1 $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja123 -1 @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."124 -1125 -1 text:126 -1 $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text127 -1 @echo128 -1 @echo "Build finished. The text files are in $(BUILDDIR)/text."129 -1130 -1 man:131 -1 $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man132 -1 @echo133 -1 @echo "Build finished. The manual pages are in $(BUILDDIR)/man."134 -1135 -1 texinfo:136 -1 $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo137 -1 @echo138 -1 @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."139 -1 @echo "Run \`make' in that directory to run these through makeinfo" \140 -1 "(use \`make info' here to do that automatically)."141 -1142 -1 info:143 -1 $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo144 -1 @echo "Running Texinfo files through makeinfo..."145 -1 make -C $(BUILDDIR)/texinfo info146 -1 @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."147 -1148 -1 gettext:149 -1 $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale150 -1 @echo151 -1 @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."152 -1153 -1 changes:154 -1 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes155 -1 @echo156 -1 @echo "The overview file is in $(BUILDDIR)/changes."157 -1158 -1 linkcheck:159 -1 $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck160 -1 @echo161 -1 @echo "Link check complete; look for any errors in the above output " \162 -1 "or in $(BUILDDIR)/linkcheck/output.txt."163 -1164 -1 doctest:165 -1 $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest166 -1 @echo "Testing of doctests in the sources finished, look at the " \167 -1 "results in $(BUILDDIR)/doctest/output.txt."168 -1169 -1 xml:170 -1 $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml171 -1 @echo172 -1 @echo "Build finished. The XML files are in $(BUILDDIR)/xml."173 -1174 -1 pseudoxml:175 -1 $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml176 -1 @echo177 -1 @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."
diff --git a/docs/make.bat b/docs/make.bat
@@ -1,242 +0,0 @@1 -1 @ECHO OFF2 -13 -1 REM Command file for Sphinx documentation4 -15 -1 if "%SPHINXBUILD%" == "" (6 -1 set SPHINXBUILD=sphinx-build7 -1 )8 -1 set BUILDDIR=build9 -1 set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source10 -1 set I18NSPHINXOPTS=%SPHINXOPTS% source11 -1 if NOT "%PAPER%" == "" (12 -1 set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%13 -1 set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%14 -1 )15 -116 -1 if "%1" == "" goto help17 -118 -1 if "%1" == "help" (19 -1 :help20 -1 echo.Please use `make ^<target^>` where ^<target^> is one of21 -1 echo. html to make standalone HTML files22 -1 echo. dirhtml to make HTML files named index.html in directories23 -1 echo. singlehtml to make a single large HTML file24 -1 echo. pickle to make pickle files25 -1 echo. json to make JSON files26 -1 echo. htmlhelp to make HTML files and a HTML help project27 -1 echo. qthelp to make HTML files and a qthelp project28 -1 echo. devhelp to make HTML files and a Devhelp project29 -1 echo. epub to make an epub30 -1 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter31 -1 echo. text to make text files32 -1 echo. man to make manual pages33 -1 echo. texinfo to make Texinfo files34 -1 echo. gettext to make PO message catalogs35 -1 echo. changes to make an overview over all changed/added/deprecated items36 -1 echo. xml to make Docutils-native XML files37 -1 echo. pseudoxml to make pseudoxml-XML files for display purposes38 -1 echo. linkcheck to check all external links for integrity39 -1 echo. doctest to run all doctests embedded in the documentation if enabled40 -1 goto end41 -1 )42 -143 -1 if "%1" == "clean" (44 -1 for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i45 -1 del /q /s %BUILDDIR%\*46 -1 goto end47 -1 )48 -149 -150 -1 %SPHINXBUILD% 2> nul51 -1 if errorlevel 9009 (52 -1 echo.53 -1 echo.The 'sphinx-build' command was not found. Make sure you have Sphinx54 -1 echo.installed, then set the SPHINXBUILD environment variable to point55 -1 echo.to the full path of the 'sphinx-build' executable. Alternatively you56 -1 echo.may add the Sphinx directory to PATH.57 -1 echo.58 -1 echo.If you don't have Sphinx installed, grab it from59 -1 echo.http://sphinx-doc.org/60 -1 exit /b 161 -1 )62 -163 -1 if "%1" == "html" (64 -1 %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html65 -1 if errorlevel 1 exit /b 166 -1 echo.67 -1 echo.Build finished. The HTML pages are in %BUILDDIR%/html.68 -1 goto end69 -1 )70 -171 -1 if "%1" == "dirhtml" (72 -1 %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml73 -1 if errorlevel 1 exit /b 174 -1 echo.75 -1 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.76 -1 goto end77 -1 )78 -179 -1 if "%1" == "singlehtml" (80 -1 %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml81 -1 if errorlevel 1 exit /b 182 -1 echo.83 -1 echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.84 -1 goto end85 -1 )86 -187 -1 if "%1" == "pickle" (88 -1 %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle89 -1 if errorlevel 1 exit /b 190 -1 echo.91 -1 echo.Build finished; now you can process the pickle files.92 -1 goto end93 -1 )94 -195 -1 if "%1" == "json" (96 -1 %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json97 -1 if errorlevel 1 exit /b 198 -1 echo.99 -1 echo.Build finished; now you can process the JSON files.100 -1 goto end101 -1 )102 -1103 -1 if "%1" == "htmlhelp" (104 -1 %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp105 -1 if errorlevel 1 exit /b 1106 -1 echo.107 -1 echo.Build finished; now you can run HTML Help Workshop with the ^108 -1 .hhp project file in %BUILDDIR%/htmlhelp.109 -1 goto end110 -1 )111 -1112 -1 if "%1" == "qthelp" (113 -1 %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp114 -1 if errorlevel 1 exit /b 1115 -1 echo.116 -1 echo.Build finished; now you can run "qcollectiongenerator" with the ^117 -1 .qhcp project file in %BUILDDIR%/qthelp, like this:118 -1 echo.^> qcollectiongenerator %BUILDDIR%\qthelp\laneya.qhcp119 -1 echo.To view the help file:120 -1 echo.^> assistant -collectionFile %BUILDDIR%\qthelp\laneya.ghc121 -1 goto end122 -1 )123 -1124 -1 if "%1" == "devhelp" (125 -1 %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp126 -1 if errorlevel 1 exit /b 1127 -1 echo.128 -1 echo.Build finished.129 -1 goto end130 -1 )131 -1132 -1 if "%1" == "epub" (133 -1 %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub134 -1 if errorlevel 1 exit /b 1135 -1 echo.136 -1 echo.Build finished. The epub file is in %BUILDDIR%/epub.137 -1 goto end138 -1 )139 -1140 -1 if "%1" == "latex" (141 -1 %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex142 -1 if errorlevel 1 exit /b 1143 -1 echo.144 -1 echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.145 -1 goto end146 -1 )147 -1148 -1 if "%1" == "latexpdf" (149 -1 %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex150 -1 cd %BUILDDIR%/latex151 -1 make all-pdf152 -1 cd %BUILDDIR%/..153 -1 echo.154 -1 echo.Build finished; the PDF files are in %BUILDDIR%/latex.155 -1 goto end156 -1 )157 -1158 -1 if "%1" == "latexpdfja" (159 -1 %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex160 -1 cd %BUILDDIR%/latex161 -1 make all-pdf-ja162 -1 cd %BUILDDIR%/..163 -1 echo.164 -1 echo.Build finished; the PDF files are in %BUILDDIR%/latex.165 -1 goto end166 -1 )167 -1168 -1 if "%1" == "text" (169 -1 %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text170 -1 if errorlevel 1 exit /b 1171 -1 echo.172 -1 echo.Build finished. The text files are in %BUILDDIR%/text.173 -1 goto end174 -1 )175 -1176 -1 if "%1" == "man" (177 -1 %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man178 -1 if errorlevel 1 exit /b 1179 -1 echo.180 -1 echo.Build finished. The manual pages are in %BUILDDIR%/man.181 -1 goto end182 -1 )183 -1184 -1 if "%1" == "texinfo" (185 -1 %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo186 -1 if errorlevel 1 exit /b 1187 -1 echo.188 -1 echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.189 -1 goto end190 -1 )191 -1192 -1 if "%1" == "gettext" (193 -1 %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale194 -1 if errorlevel 1 exit /b 1195 -1 echo.196 -1 echo.Build finished. The message catalogs are in %BUILDDIR%/locale.197 -1 goto end198 -1 )199 -1200 -1 if "%1" == "changes" (201 -1 %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes202 -1 if errorlevel 1 exit /b 1203 -1 echo.204 -1 echo.The overview file is in %BUILDDIR%/changes.205 -1 goto end206 -1 )207 -1208 -1 if "%1" == "linkcheck" (209 -1 %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck210 -1 if errorlevel 1 exit /b 1211 -1 echo.212 -1 echo.Link check complete; look for any errors in the above output ^213 -1 or in %BUILDDIR%/linkcheck/output.txt.214 -1 goto end215 -1 )216 -1217 -1 if "%1" == "doctest" (218 -1 %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest219 -1 if errorlevel 1 exit /b 1220 -1 echo.221 -1 echo.Testing of doctests in the sources finished, look at the ^222 -1 results in %BUILDDIR%/doctest/output.txt.223 -1 goto end224 -1 )225 -1226 -1 if "%1" == "xml" (227 -1 %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml228 -1 if errorlevel 1 exit /b 1229 -1 echo.230 -1 echo.Build finished. The XML files are in %BUILDDIR%/xml.231 -1 goto end232 -1 )233 -1234 -1 if "%1" == "pseudoxml" (235 -1 %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml236 -1 if errorlevel 1 exit /b 1237 -1 echo.238 -1 echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.239 -1 goto end240 -1 )241 -1242 -1 :end
diff --git a/docs/source/actions.rst b/docs/source/actions.rst
@@ -1,5 +0,0 @@1 -1 Available actions2 -1 =================3 -14 -1 .. automodule:: laneya.actions5 -1 :members:
diff --git a/docs/source/conf.py b/docs/source/conf.py
@@ -1,265 +0,0 @@1 -1 # -*- coding: utf-8 -*-2 -1 #3 -1 # laneya documentation build configuration file, created by4 -1 # sphinx-quickstart on Sat Oct 4 08:02:06 2014.5 -1 #6 -1 # This file is execfile()d with the current directory set to its7 -1 # containing dir.8 -1 #9 -1 # Note that not all possible configuration values are present in this10 -1 # autogenerated file.11 -1 #12 -1 # All configuration values have a default; values that are commented out13 -1 # serve to show the default.14 -115 -1 import sys16 -1 import os17 -118 -1 # If extensions (or modules to document with autodoc) are in another directory,19 -1 # add these directories to sys.path here. If the directory is relative to the20 -1 # documentation root, use os.path.abspath to make it absolute, like shown here.21 -1 #sys.path.insert(0, os.path.abspath('.'))22 -123 -1 # -- General configuration ------------------------------------------------24 -125 -1 # If your documentation needs a minimal Sphinx version, state it here.26 -1 #needs_sphinx = '1.0'27 -128 -1 # Add any Sphinx extension module names here, as strings. They can be29 -1 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom30 -1 # ones.31 -1 extensions = [32 -1 'sphinx.ext.autodoc',33 -1 'sphinx.ext.intersphinx',34 -1 ]35 -136 -1 # Add any paths that contain templates here, relative to this directory.37 -1 # templates_path = ['_templates']38 -139 -1 # The suffix of source filenames.40 -1 source_suffix = '.rst'41 -142 -1 # The encoding of source files.43 -1 #source_encoding = 'utf-8-sig'44 -145 -1 # The master toctree document.46 -1 master_doc = 'index'47 -148 -1 # General information about the project.49 -1 project = u'laneya'50 -1 copyright = u'2014, Tobias Bengfort'51 -152 -1 # The version info for the project you're documenting, acts as replacement for53 -1 # |version| and |release|, also used in various other places throughout the54 -1 # built documents.55 -1 #56 -1 # The short X.Y version.57 -1 version = '0.0.0'58 -1 # The full version, including alpha/beta/rc tags.59 -1 release = '0.0.0'60 -161 -1 # The language for content autogenerated by Sphinx. Refer to documentation62 -1 # for a list of supported languages.63 -1 #language = None64 -165 -1 # There are two options for replacing |today|: either, you set today to some66 -1 # non-false value, then it is used:67 -1 #today = ''68 -1 # Else, today_fmt is used as the format for a strftime call.69 -1 #today_fmt = '%B %d, %Y'70 -171 -1 # List of patterns, relative to source directory, that match files and72 -1 # directories to ignore when looking for source files.73 -1 exclude_patterns = []74 -175 -1 # The reST default role (used for this markup: `text`) to use for all76 -1 # documents.77 -1 #default_role = None78 -179 -1 # If true, '()' will be appended to :func: etc. cross-reference text.80 -1 #add_function_parentheses = True81 -182 -1 # If true, the current module name will be prepended to all description83 -1 # unit titles (such as .. function::).84 -1 #add_module_names = True85 -186 -1 # If true, sectionauthor and moduleauthor directives will be shown in the87 -1 # output. They are ignored by default.88 -1 #show_authors = False89 -190 -1 # The name of the Pygments (syntax highlighting) style to use.91 -1 pygments_style = 'sphinx'92 -193 -1 # A list of ignored prefixes for module index sorting.94 -1 #modindex_common_prefix = []95 -196 -1 # If true, keep warnings as "system message" paragraphs in the built documents.97 -1 #keep_warnings = False98 -199 -1100 -1 # -- Options for HTML output ----------------------------------------------101 -1102 -1 # The theme to use for HTML and HTML Help pages. See the documentation for103 -1 # a list of builtin themes.104 -1 html_theme = 'default'105 -1106 -1 # Theme options are theme-specific and customize the look and feel of a theme107 -1 # further. For a list of options available for each theme, see the108 -1 # documentation.109 -1 #html_theme_options = {}110 -1111 -1 # Add any paths that contain custom themes here, relative to this directory.112 -1 #html_theme_path = []113 -1114 -1 # The name for this set of Sphinx documents. If None, it defaults to115 -1 # "<project> v<release> documentation".116 -1 #html_title = None117 -1118 -1 # A shorter title for the navigation bar. Default is the same as html_title.119 -1 #html_short_title = None120 -1121 -1 # The name of an image file (relative to this directory) to place at the top122 -1 # of the sidebar.123 -1 #html_logo = None124 -1125 -1 # The name of an image file (within the static path) to use as favicon of the126 -1 # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32127 -1 # pixels large.128 -1 #html_favicon = None129 -1130 -1 # Add any paths that contain custom static files (such as style sheets) here,131 -1 # relative to this directory. They are copied after the builtin static files,132 -1 # so a file named "default.css" will overwrite the builtin "default.css".133 -1 # html_static_path = ['_static']134 -1135 -1 # Add any extra paths that contain custom files (such as robots.txt or136 -1 # .htaccess) here, relative to this directory. These files are copied137 -1 # directly to the root of the documentation.138 -1 #html_extra_path = []139 -1140 -1 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,141 -1 # using the given strftime format.142 -1 #html_last_updated_fmt = '%b %d, %Y'143 -1144 -1 # If true, SmartyPants will be used to convert quotes and dashes to145 -1 # typographically correct entities.146 -1 #html_use_smartypants = True147 -1148 -1 # Custom sidebar templates, maps document names to template names.149 -1 #html_sidebars = {}150 -1151 -1 # Additional templates that should be rendered to pages, maps page names to152 -1 # template names.153 -1 #html_additional_pages = {}154 -1155 -1 # If false, no module index is generated.156 -1 #html_domain_indices = True157 -1158 -1 # If false, no index is generated.159 -1 #html_use_index = True160 -1161 -1 # If true, the index is split into individual pages for each letter.162 -1 #html_split_index = False163 -1164 -1 # If true, links to the reST sources are added to the pages.165 -1 #html_show_sourcelink = True166 -1167 -1 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.168 -1 #html_show_sphinx = True169 -1170 -1 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.171 -1 #html_show_copyright = True172 -1173 -1 # If true, an OpenSearch description file will be output, and all pages will174 -1 # contain a <link> tag referring to it. The value of this option must be the175 -1 # base URL from which the finished HTML is served.176 -1 #html_use_opensearch = ''177 -1178 -1 # This is the file name suffix for HTML files (e.g. ".xhtml").179 -1 #html_file_suffix = None180 -1181 -1 # Output file base name for HTML help builder.182 -1 htmlhelp_basename = 'laneyadoc'183 -1184 -1185 -1 # -- Options for LaTeX output ---------------------------------------------186 -1187 -1 latex_elements = {188 -1 # The paper size ('letterpaper' or 'a4paper').189 -1 #'papersize': 'letterpaper',190 -1191 -1 # The font size ('10pt', '11pt' or '12pt').192 -1 #'pointsize': '10pt',193 -1194 -1 # Additional stuff for the LaTeX preamble.195 -1 #'preamble': '',196 -1 }197 -1198 -1 # Grouping the document tree into LaTeX files. List of tuples199 -1 # (source start file, target name, title,200 -1 # author, documentclass [howto, manual, or own class]).201 -1 latex_documents = [202 -1 ('index', 'laneya.tex', u'laneya Documentation',203 -1 u'Tobias Bengfort', 'manual'),204 -1 ]205 -1206 -1 # The name of an image file (relative to this directory) to place at the top of207 -1 # the title page.208 -1 #latex_logo = None209 -1210 -1 # For "manual" documents, if this is true, then toplevel headings are parts,211 -1 # not chapters.212 -1 #latex_use_parts = False213 -1214 -1 # If true, show page references after internal links.215 -1 #latex_show_pagerefs = False216 -1217 -1 # If true, show URL addresses after external links.218 -1 #latex_show_urls = False219 -1220 -1 # Documents to append as an appendix to all manuals.221 -1 #latex_appendices = []222 -1223 -1 # If false, no module index is generated.224 -1 #latex_domain_indices = True225 -1226 -1227 -1 # -- Options for manual page output ---------------------------------------228 -1229 -1 # One entry per manual page. List of tuples230 -1 # (source start file, name, description, authors, manual section).231 -1 man_pages = [232 -1 ('index', 'laneya', u'laneya Documentation',233 -1 [u'Tobias Bengfort'], 1)234 -1 ]235 -1236 -1 # If true, show URL addresses after external links.237 -1 #man_show_urls = False238 -1239 -1240 -1 # -- Options for Texinfo output -------------------------------------------241 -1242 -1 # Grouping the document tree into Texinfo files. List of tuples243 -1 # (source start file, target name, title, author,244 -1 # dir menu entry, description, category)245 -1 texinfo_documents = [246 -1 ('index', 'laneya', u'laneya Documentation',247 -1 u'Tobias Bengfort', 'laneya', 'One line description of project.',248 -1 'Miscellaneous'),249 -1 ]250 -1251 -1 # Documents to append as an appendix to all manuals.252 -1 #texinfo_appendices = []253 -1254 -1 # If false, no module index is generated.255 -1 #texinfo_domain_indices = True256 -1257 -1 # How to display URL addresses: 'footnote', 'no', or 'inline'.258 -1 #texinfo_show_urls = 'footnote'259 -1260 -1 # If true, do not generate a @detailmenu in the "Top" node's menu.261 -1 #texinfo_no_detailmenu = False262 -1263 -1264 -1 # Example configuration for intersphinx: refer to the Python standard library.265 -1 intersphinx_mapping = {'http://docs.python.org/': None}
diff --git a/docs/source/deferred.rst b/docs/source/deferred.rst
@@ -1,6 +0,0 @@1 -1 Deferred2 -1 ========3 -14 -1 .. automodule:: laneya.deferred5 -1 :members:6 -1 :undoc-members:
diff --git a/docs/source/index.rst b/docs/source/index.rst
@@ -1,21 +0,0 @@1 -1 Welcome to laneya's documentation!2 -1 ==================================3 -14 -1 Contents5 -1 --------6 -17 -1 .. toctree::8 -1 :maxdepth: 29 -110 -1 quickstart11 -1 protocol12 -1 actions13 -1 map14 -1 deferred15 -116 -1 Indices and tables17 -1 ------------------18 -119 -1 * :ref:`genindex`20 -1 * :ref:`modindex`21 -1 * :ref:`search`
diff --git a/docs/source/map.rst b/docs/source/map.rst
@@ -1,6 +0,0 @@1 -1 Map and Sprites2 -1 ===============3 -14 -1 .. automodule:: laneya.map5 -1 :members:6 -1 :show-inheritance:
diff --git a/docs/source/protocol.rst b/docs/source/protocol.rst
@@ -1,5 +0,0 @@1 -1 Protocol2 -1 ========3 -14 -1 .. automodule:: laneya.protocol5 -1 :members:
diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst
@@ -1,4 +0,0 @@1 -1 Quickstart2 -1 ==========3 -14 -1 .. include:: ../../README.rst
diff --git a/setup.cfg b/setup.cfg
@@ -8,8 +8,3 @@ cover-html=1 8 8 9 9 [flake8] 10 10 exclude=.env,.tox,.git,build,dist,docs11 -112 -1 [build_sphinx]13 -1 source-dir = docs/source14 -1 build-dir = docs/build15 -1 all-files = 1