Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
sphinx
sphinx-rtd-theme
sphinx-copybutton
sphinx-design
sphinx-tabs
16 changes: 6 additions & 10 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@
# -- Project information -----------------------------------------------------

project = u'Robotont'
copyright = u'2023, University of Tartu, Licensed under CC BY-NC'
copyright = u'2025, University of Tartu, Licensed under CC BY-NC'
author = u'Veiko Vunder'

# The short X.Y version
version = u''
# The full version, including alpha/beta/rc tags
release = u'0.0.1'


# -- General configuration ---------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
Expand All @@ -40,6 +39,9 @@
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx_copybutton',
'sphinx_design',
'sphinx_tabs.tabs'
]

# Add any paths that contain templates here, relative to this directory.
Expand All @@ -59,7 +61,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = 'en'

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand All @@ -69,7 +71,6 @@
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = None


# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand All @@ -86,7 +87,7 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['nstatic']
html_static_path = []

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
Expand All @@ -104,7 +105,6 @@
# Output file base name for HTML help builder.
htmlhelp_basename = 'Robotontdoc'


# -- Options for LaTeX output ------------------------------------------------

latex_elements = {
Expand Down Expand Up @@ -133,7 +133,6 @@
u'M', 'manual'),
]


# -- Options for manual page output ------------------------------------------

# One entry per manual page. List of tuples
Expand All @@ -143,7 +142,6 @@
[author], 1)
]


# -- Options for Texinfo output ----------------------------------------------

# Grouping the document tree into Texinfo files. List of tuples
Expand All @@ -155,7 +153,6 @@
'Miscellaneous'),
]


# -- Options for Epub output -------------------------------------------------

# Bibliographic Dublin Core info.
Expand All @@ -173,5 +170,4 @@
# A list of files that should not be packed into the epub file.
epub_exclude_files = ['search.html']


# -- Extension configuration -------------------------------------------------
Loading