File tree Expand file tree Collapse file tree 8 files changed +700
-1
lines changed Expand file tree Collapse file tree 8 files changed +700
-1
lines changed Original file line number Diff line number Diff line change
1
+ # .readthedocs.yaml
2
+ # Read the Docs configuration file
3
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
+
5
+ # Required
6
+ version : 2
7
+
8
+ # Set the version of Python and other tools you might need
9
+ build :
10
+ os : ubuntu-20.04
11
+ tools :
12
+ python : " 3.10"
13
+
14
+ # Build documentation in the docs/ directory with Sphinx
15
+ sphinx :
16
+ configuration : docs/conf.py
17
+
18
+
19
+ # Optionally declare the Python requirements required to build your docs
20
+ python :
21
+ install :
22
+ - requirements : docs/requirements.txt
Original file line number Diff line number Diff line change 4
4
![ python-app workflow status] ( https://github.com/lukepafford/simple-saml/actions/workflows/python-app.yml/badge.svg )
5
5
[ ![ CodeFactor] ( https://www.codefactor.io/repository/github/lukepafford/simple-saml/badge )] ( https://www.codefactor.io/repository/github/lukepafford/simple-saml )
6
6
[ ![ codecov] ( https://codecov.io/gh/lukepafford/simple-saml/branch/main/graph/badge.svg?token=CHPV5Y0J7Q )] ( https://codecov.io/gh/lukepafford/simple-saml )
7
+ [ ![ Documentation Status] ( https://readthedocs.org/projects/simple-saml/badge/?version=latest )] ( https://simple-saml.readthedocs.io/en/latest/?badge=latest )
7
8
8
9
A Python library that implements the [ Security Assertion Markup Language (SAML) V2.0] ( http://saml.xml.org/saml-specifications ) .
9
10
Original file line number Diff line number Diff line change
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 = .
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 )
Original file line number Diff line number Diff line change
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
+ project = "Simple SAML"
10
+ copyright = "2022, Luke Pafford"
11
+ author = "Luke Pafford"
12
+ release = "0.0.1"
13
+
14
+ # -- General configuration ---------------------------------------------------
15
+ # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
16
+
17
+ extensions = [
18
+ "sphinx.ext.autodoc" ,
19
+ "sphinx.ext.intersphinx" ,
20
+ "sphinx.ext.coverage" ,
21
+ ]
22
+
23
+ templates_path = ["_templates" ]
24
+ exclude_patterns = ["_build" , "Thumbs.db" , ".DS_Store" ]
25
+
26
+
27
+ # -- Options for HTML output -------------------------------------------------
28
+ # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
29
+
30
+ html_theme = "sphinx_material"
31
+ html_static_path = ["_static" ]
32
+
33
+ # -- Options for intersphinx extension ---------------------------------------
34
+ # https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#configuration
35
+
36
+ intersphinx_mapping = {
37
+ "python" : ("https://docs.python.org/3" , None ),
38
+ }
Original file line number Diff line number Diff line change
1
+ .. Simple SAML documentation master file, created by
2
+ sphinx-quickstart on Sat Sep 17 23:47:55 2022.
3
+ You can adapt this file completely to your liking, but it should at least
4
+ contain the root `toctree` directive.
5
+
6
+ Welcome to Simple SAML's documentation!
7
+ =======================================
8
+
9
+ .. toctree ::
10
+ :maxdepth: 2
11
+ :caption: Contents:
12
+
13
+
14
+
15
+ Indices and tables
16
+ ==================
17
+
18
+ * :ref: `genindex `
19
+ * :ref: `modindex `
20
+ * :ref: `search `
Original file line number Diff line number Diff line change
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 = .
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
You can’t perform that action at this time.
0 commit comments