Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
km3irf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
km3py
km3irf
Merge requests
!6
Another dev
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Another dev
another-dev
into
main
Overview
0
Commits
26
Pipelines
1
Changes
9
Closed
Mikhail Smirnov
requested to merge
another-dev
into
main
2 years ago
Overview
0
Commits
26
Pipelines
1
Changes
9
Expand
Some functions were added
0
0
Merge request reports
Compare
main
version 1
b847e375
2 years ago
main (base)
and
latest version
latest version
b847e375
26 commits,
2 years ago
version 1
b847e375
26 commits,
2 years ago
9 files
+
424
−
19
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
doc/conf.py
+
20
−
18
Options
@@ -21,11 +21,11 @@ from pkg_resources import get_distribution
# -- Project information -----------------------------------------------------
version
=
get_distribution
(
'
km3irf
'
).
version
short_version
=
'
.
'
.
join
(
version
.
split
(
'
.
'
)[:
2
])
project
=
'
km3irf {}
'
.
format
(
short_version
)
copyright
=
'
{0}, Tamas Gal
'
.
format
(
date
.
today
().
year
)
author
=
'
Tamas Gal
'
version
=
get_distribution
(
"
km3irf
"
).
version
short_version
=
"
.
"
.
join
(
version
.
split
(
"
.
"
)[:
2
])
project
=
"
km3irf {}
"
.
format
(
short_version
)
copyright
=
"
{0}, Tamas Gal
"
.
format
(
date
.
today
().
year
)
author
=
"
Tamas Gal
"
# -- General configuration ---------------------------------------------------
@@ -33,32 +33,34 @@ author = 'Tamas Gal'
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions
=
[
'
sphinx.ext.autodoc
'
,
'
sphinx.ext.autosummary
'
,
'
sphinx.ext.viewcode
'
,
'
autoapi.extension
'
,
'
numpydoc
'
,
'
sphinx_gallery.gen_gallery
'
"
sphinx.ext.autodoc
"
,
"
sphinx.ext.autosummary
"
,
"
sphinx.ext.viewcode
"
,
"
autoapi.extension
"
,
"
numpydoc
"
,
"
sphinx_gallery.gen_gallery
"
,
]
# Add any paths that contain templates here, relative to this directory.
templates_path
=
[
'
_templates
'
]
templates_path
=
[
"
_templates
"
]
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns
=
[
'
_build
'
,
'
Thumbs.db
'
,
'
.DS_Store
'
,
'
version.py
'
]
exclude_patterns
=
[
"
_build
"
,
"
Thumbs.db
"
,
"
.DS_Store
"
,
"
version.py
"
]
# AutoAPI
autoapi_type
=
"
python
"
autoapi_dirs
=
[
'
../src/km3irf
'
]
autoapi_dirs
=
[
"
../src/km3irf
"
]
autoapi_options
=
[
"
members
"
,
"
undoc-members
"
,
"
show-module-summary
"
]
autoapi_include_summaries
=
True
# Gallery
sphinx_gallery_conf
=
{
'
backreferences_dir
'
:
'
gen_modules
'
,
'
default_thumb_file
'
:
'
_static/default_gallery_thumbnail.png
'
,
'
examples_dirs
'
:
'
../examples
'
,
# path to your example scripts
'
gallery_dirs
'
:
'
auto_examples
'
,
# path to where to save gallery generated output
"
backreferences_dir
"
:
"
gen_modules
"
,
"
default_thumb_file
"
:
"
_static/default_gallery_thumbnail.png
"
,
"
examples_dirs
"
:
"
../examples
"
,
# path to your example scripts
"
gallery_dirs
"
:
"
auto_examples
"
,
# path to where to save gallery generated output
}
# -- Options for HTML output -------------------------------------------------
@@ -66,11 +68,11 @@ sphinx_gallery_conf = {
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme
=
'
sphinx_rtd_theme
'
html_theme
=
"
sphinx_rtd_theme
"
html_theme_path
=
[
sphinx_rtd_theme
.
get_html_theme_path
()]
# 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
=
[
'
_static
'
]
html_static_path
=
[
"
_static
"
]
html_title
=
"
km3irf {}
"
.
format
(
version
)
Loading