Skip to content

Commit 959abe1

Browse files
authored
feat: add docs (#58)
1 parent 4257aa7 commit 959abe1

File tree

7 files changed

+137
-0
lines changed

7 files changed

+137
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ roborock/__pycache__
66
poetry.lock
77
*.pyc
88
.coverage
9+
10+
# Sphinx documentation
11+
docs/_build/
12+
13+
# mkdocs documentation
14+
/site

docs/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = source
9+
BUILDDIR = build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

docs/make.bat

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
@ECHO OFF
2+
3+
pushd %~dp0
4+
5+
REM Command file for Sphinx documentation
6+
7+
if "%SPHINXBUILD%" == "" (
8+
set SPHINXBUILD=sphinx-build
9+
)
10+
set SOURCEDIR=source
11+
set BUILDDIR=build
12+
13+
if "%1" == "" goto help
14+
15+
%SPHINXBUILD% >NUL 2>NUL
16+
if errorlevel 9009 (
17+
echo.
18+
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
19+
echo.installed, then set the SPHINXBUILD environment variable to point
20+
echo.to the full path of the 'sphinx-build' executable. Alternatively you
21+
echo.may add the Sphinx directory to PATH.
22+
echo.
23+
echo.If you don't have Sphinx installed, grab it from
24+
echo.http://sphinx-doc.org/
25+
exit /b 1
26+
)
27+
28+
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
29+
goto end
30+
31+
:help
32+
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
33+
34+
:end
35+
popd

docs/source/api.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
API
2+
===
3+
4+
.. autosummary::
5+
:toctree: generated
6+
7+
python-roborock

docs/source/conf.py

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Configuration file for the Sphinx documentation builder.
2+
3+
# -- Project information
4+
5+
project = "Python Roborock"
6+
author = "Humberto gontijo & Lash-L"
7+
8+
release = "0.1"
9+
version = "0.1.0"
10+
11+
# -- General configuration
12+
13+
extensions = [
14+
"sphinx.ext.duration",
15+
"sphinx.ext.doctest",
16+
"sphinx.ext.autodoc",
17+
"sphinx.ext.autosummary",
18+
"sphinx.ext.intersphinx",
19+
]
20+
21+
intersphinx_mapping = {
22+
"python": ("https://docs.python.org/3/", None),
23+
"sphinx": ("https://www.sphinx-doc.org/en/master/", None),
24+
}
25+
intersphinx_disabled_domains = ["std"]
26+
27+
templates_path = ["_templates"]
28+
29+
# -- Options for HTML output
30+
31+
html_theme = "sphinx_rtd_theme"
32+
33+
# -- Options for EPUB output
34+
epub_show_urls = "footnote"

docs/source/index.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Welcome to Lumache's documentation!
2+
===================================
3+
4+
**Lumache** (/lu'make/) is a Python library for cooks and food lovers
5+
that creates recipes mixing random ingredients.
6+
It pulls data from the `Open Food Facts database <https://world.openfoodfacts.org/>`_
7+
and offers a *simple* and *intuitive* API.
8+
9+
Check out the :doc:`usage` section for further information, including
10+
how to :ref:`installation` the project.
11+
12+
.. note::
13+
14+
This project is under active development.
15+
16+
Contents
17+
--------
18+
19+
.. toctree::
20+
21+
usage
22+
api

docs/source/usage.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Usage
2+
=====
3+
4+
.. _installation:
5+
6+
Installation
7+
------------
8+
9+
To use Python-Roborock, first install it using pip:
10+
11+
.. code-block:: console
12+
13+
(.venv) $ pip install python-roborock

0 commit comments

Comments
 (0)