Skip to content

Commit 84ddce9

Browse files
authored
Merge pull request #1 from INRIM/v0.1.0_doc
Add first barebone documentation with Sphinx, ready for ReadTheDocs
2 parents fcf8048 + e4cee3c commit 84ddce9

File tree

8 files changed

+1638
-335
lines changed

8 files changed

+1638
-335
lines changed

.readthedocs.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
3+
build:
4+
os: "ubuntu-20.04"
5+
tools:
6+
python: "3.10"
7+
sphinx:
8+
configuration: docs/source/conf.py
9+
10+
python:
11+
install:
12+
- requirements: docs/rtd_requirements.txt

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+
%SPHINXBUILD% >NUL 2>NUL
14+
if errorlevel 9009 (
15+
echo.
16+
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
17+
echo.installed, then set the SPHINXBUILD environment variable to point
18+
echo.to the full path of the 'sphinx-build' executable. Alternatively you
19+
echo.may add the Sphinx directory to PATH.
20+
echo.
21+
echo.If you don't have Sphinx installed, grab it from
22+
echo.https://www.sphinx-doc.org/
23+
exit /b 1
24+
)
25+
26+
if "%1" == "" goto help
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/rtd_requirements.txt

Lines changed: 1020 additions & 0 deletions
Large diffs are not rendered by default.

docs/source/conf.py

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Configuration file for the Sphinx documentation builder.
2+
#
3+
# For the full list of built-in configuration values, see the documentation:
4+
# https://www.sphinx-doc.org/en/master/usage/configuration.html
5+
6+
# -- Project information -----------------------------------------------------
7+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
8+
9+
from pathlib import Path
10+
11+
project = "Super-auto-comb"
12+
copyright = "2024, Marco Pizzocaro"
13+
author = "Marco Pizzocaro"
14+
release = "0.1.0"
15+
16+
# -- General configuration ---------------------------------------------------
17+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
18+
19+
extensions = [
20+
"myst_parser",
21+
"sphinx.ext.duration",
22+
"sphinx.ext.autosectionlabel",
23+
"sphinx.ext.autodoc",
24+
"sphinx.ext.napoleon",
25+
"autoapi.extension",
26+
]
27+
autoapi_type = "python"
28+
autoapi_dirs = [f"{Path(__file__).parents[2]}/src"]
29+
30+
31+
templates_path = ["_templates"]
32+
exclude_patterns = []
33+
34+
35+
# -- Options for HTML output -------------------------------------------------
36+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
37+
38+
html_theme = "sphinx_rtd_theme"
39+
html_static_path = ["_static"]

docs/source/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
% Super-auto-comb documentation master file, created by
2+
% sphinx-quickstart on Thu Sep 5 10:54:15 2024.
3+
% You can adapt this file completely to your liking, but it should at least
4+
% contain the root `toctree` directive.
5+
6+
# Super-auto-comb documentation
7+
8+
This is the documentation for Super-auto-comb.
9+
10+
```{toctree}
11+
:caption: 'Contents:'
12+
:maxdepth: 2
13+
```

poetry.lock

Lines changed: 491 additions & 332 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,14 @@ configargparse = "^1.7"
2020
[tool.poetry.group.dev.dependencies]
2121
pytest = "^8.3.2"
2222
ruff = "^0.6.3"
23-
sphinx = "^8.0.2"
24-
myst-parser = "^4.0.0"
25-
ipython = "^8.27.0"
23+
24+
25+
[tool.poetry.group.doc.dependencies]
26+
sphinx = "^7.4.7"
27+
myst-parser = "^3.0.1"
28+
sphinx-rtd-theme = "^2.0.0"
29+
sphinx-autobuild = "^2024.9.3"
30+
sphinx-autoapi = "^3.3.1"
2631

2732
[build-system]
2833
requires = ["poetry-core"]

0 commit comments

Comments
 (0)