File tree Expand file tree Collapse file tree 3 files changed +60
-0
lines changed Expand file tree Collapse file tree 3 files changed +60
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Read the Docs configuration file for Sphinx projects
2
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+ # Required
5
+ version : 2
6
+
7
+ # Set the OS, Python version and other tools you might need
8
+ build :
9
+ os : ubuntu-22.04
10
+ tools :
11
+ python : " 3.10"
12
+
13
+ # Build documentation in the "docs/" directory with Sphinx
14
+ sphinx :
15
+ configuration : docs/conf.py
16
+
17
+ formats :
18
+ - pdf
19
+ - epub
20
+
21
+ python :
22
+ install :
23
+ - requirements : docs/requirements.txt
Original file line number Diff line number Diff line change
1
+ # Configuration file for the Sphinx documentation builder.
2
+
3
+ # -- Project information
4
+
5
+ project = "Asyncio-rpc"
6
+ copyright = "2023, Jelle Prins"
7
+ author = "Jelle Prins"
8
+
9
+ release = "0.1"
10
+ version = "0.1.0"
11
+
12
+ # -- General configuration
13
+
14
+ extensions = [
15
+ "sphinx.ext.duration" ,
16
+ "sphinx.ext.doctest" ,
17
+ "sphinx.ext.autodoc" ,
18
+ "sphinx.ext.autosummary" ,
19
+ "sphinx.ext.intersphinx" ,
20
+ ]
21
+
22
+ intersphinx_mapping = {
23
+ "python" : ("https://docs.python.org/3/" , None ),
24
+ "sphinx" : ("https://www.sphinx-doc.org/en/master/" , None ),
25
+ }
26
+ intersphinx_disabled_domains = ["std" ]
27
+
28
+ templates_path = ["_templates" ]
29
+
30
+ # -- Options for HTML output
31
+
32
+ html_theme = "sphinx_rtd_theme"
33
+
34
+ # -- Options for EPUB output
35
+ epub_show_urls = "footnote"
Original file line number Diff line number Diff line change
1
+ sphinx == 7.1.2
2
+ sphinx-rtd-theme == 1.3.0rc1
You can’t perform that action at this time.
0 commit comments