Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.buildout
Commits
a786a93d
Commit
a786a93d
authored
Aug 11, 2016
by
André Anjos
💬
Browse files
[doc] Standardized documentation
parent
8b11bbf3
Pipeline
#3052
failed with stage
in 8 minutes and 12 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
doc/conf.py
View file @
a786a93d
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Andre Anjos <andre.anjos@idiap.ch>
# Tue 15 Oct 16:37:18 2013 CEST
#
# Copyright (C) 2011-2014 Idiap Research Institute, Martigny, Switzerland
import
os
import
sys
import
glob
import
pkg_resources
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))
# -- General configuration -----------------------------------------------------
...
...
@@ -29,20 +21,17 @@ extensions = [
'sphinx.ext.autodoc'
,
'sphinx.ext.autosummary'
,
'sphinx.ext.doctest'
,
'sphinx.ext.graphviz'
,
'sphinx.ext.intersphinx'
,
'sphinx.ext.napoleon'
,
'sphinx.ext.viewcode'
,
]
# The viewcode extension appeared only on Sphinx >= 1.0.0
import
sphinx
if
sphinx
.
__version__
>=
"1.0"
:
extensions
.
append
(
'sphinx.ext.viewcode'
)
if
sphinx
.
__version__
>=
"1.4"
:
extensions
.
append
(
'sphinx.ext.imgmath'
)
if
sphinx
.
__version__
>=
"1.4.1"
:
extensions
.
append
(
'sphinx.ext.imgmath'
)
else
:
extensions
.
append
(
'sphinx.ext.pngmath'
)
extensions
.
append
(
'sphinx.ext.pngmath'
)
# Always includes todos
todo_include_todos
=
True
...
...
@@ -50,6 +39,9 @@ todo_include_todos = True
# Generates auto-summary automatically
autosummary_generate
=
True
# Create numbers on figures with captions
numfig
=
True
# If we are on OSX, the 'dvipng' path maybe different
dvipng_osx
=
'/opt/local/libexec/texlive/binaries/dvipng'
if
os
.
path
.
exists
(
dvipng_osx
):
pngmath_dvipng
=
dvipng_osx
...
...
@@ -72,17 +64,16 @@ import time
copyright
=
u
'%s, Idiap Research Institute'
%
time
.
strftime
(
'%Y'
)
# Grab the setup entry
### Unfortunately, this doesn't work for bob.buildout
#distribution = pkg_resources.require('bob.buildout')[0]
distribution
=
pkg_resources
.
require
(
project
)[
0
]
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version
=
"2.0.0a0"
version
=
distribution
.
version
# The full version, including alpha/beta/rc tags.
release
=
version
release
=
distribution
.
version
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
@@ -118,13 +109,18 @@ pygments_style = 'sphinx'
# A list of ignored prefixes for module index sorting.
#modindex_common_prefix = []
# Some variables which are useful for generated material
project_variable
=
project
.
replace
(
'.'
,
'_'
)
short_description
=
u
'A collection of zc.buildout recipes for Bob packages'
owner
=
[
u
'Idiap Research Institute'
]
# -- Options for HTML output ---------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
i
f
sphinx
.
__version__
>=
"1.0"
:
html_theme
=
'
natur
e'
i
mport
sphinx
_rtd_theme
html_theme
=
'
sphinx_rtd_them
e'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
...
...
@@ -132,14 +128,14 @@ if sphinx.__version__ >= "1.0":
#html_theme_options = {}
# Add any paths that contain custom themes here, relative to this directory.
#
html_theme_path = []
html_theme_path
=
[
sphinx_rtd_theme
.
get_html_theme_path
()
]
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
#html_title = None
# A shorter title for the navigation bar. Default is the same as html_title.
#html_short_title =
'bob_extension'
#html_short_title =
project_variable
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
...
...
@@ -197,65 +193,12 @@ html_favicon = 'img/favicon.ico'
#html_file_suffix = None
# Output file base name for HTML help builder.
htmlhelp_basename
=
'bob_buildout_doc'
# -- Options for LaTeX output --------------------------------------------------
# The paper size ('letter' or 'a4').
latex_paper_size
=
'a4'
# The font size ('10pt', '11pt' or '12pt').
latex_font_size
=
'10pt'
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents
=
[
(
'index'
,
'bob_extension.tex'
,
u
'Bob Buildout Rules'
,
u
'Biometrics Group, Idiap Research Institute'
,
'manual'
),
]
# The name of an image file (relative to this directory) to place at the top of
# the title page.
latex_logo
=
''
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
#latex_use_parts = False
# If true, show page references after internal links.
#latex_show_pagerefs = False
htmlhelp_basename
=
project_variable
+
u
'_doc'
# If true, show URL addresses after external links.
#latex_show_urls = False
# Additional stuff for the LaTeX preamble.
#latex_preamble = ''
# Documents to append as an appendix to all manuals.
#latex_appendices = []
# If false, no module index is generated.
#latex_domain_indices = True
# Included after all input documents
rst_epilog
=
"""
.. |project| replace:: Bob
.. |url| replace:: https://www.idiap.ch/software/bob/
.. |version| replace:: %s
.. |current-year| date:: %%Y
"""
%
(
version
,)
# -- Options for manual page output --------------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages
=
[
(
'index'
,
'bob_extension'
,
u
'Bob Buildout Rules Documentation'
,
[
u
'Idiap Research Institute'
],
1
)
]
# -- Post configuration --------------------------------------------------------
# Default processing flags for sphinx
autoclass_content
=
'
both
'
autoclass_content
=
'
class
'
autodoc_member_order
=
'bysource'
autodoc_default_flags
=
[
'members'
,
...
...
@@ -264,5 +207,28 @@ autodoc_default_flags = [
'show-inheritance'
,
]
# For inter-documentation mapping:
from
bob.extension.utils
import
link_documentation
intersphinx_mapping
=
link_documentation
()
# We want to remove all private (i.e. _. or __.__) members
# that are not in the list of accepted functions
accepted_private_functions
=
[
'__array__'
]
def
member_function_test
(
app
,
what
,
name
,
obj
,
skip
,
options
):
# test if we have a private function
if
len
(
name
)
>
1
and
name
[
0
]
==
'_'
:
# test if this private function should be allowed
if
name
not
in
accepted_private_functions
:
# omit privat functions that are not in the list of accepted private functions
return
skip
else
:
# test if the method is documented
if
not
hasattr
(
obj
,
'__doc__'
)
or
not
obj
.
__doc__
:
return
skip
return
False
def
setup
(
app
):
pass
app
.
connect
(
'autodoc-skip-member'
,
member_function_test
)
doc/img/logo.png
View replaced file @
8b11bbf3
View file @
a786a93d
11 KB
|
W:
|
H:
6.12 KB
|
W:
|
H:
2-up
Swipe
Onion skin
setup.py
View file @
a786a93d
...
...
@@ -11,7 +11,7 @@ version = open("version.txt").read().rstrip()
setup
(
name
=
'bob.buildout'
,
version
=
version
,
description
=
"zc.buildout recipes
to perform a variety of tasks required by Bob satellite
packages"
,
description
=
"
A collection of
zc.buildout recipes
for Bob
packages"
,
keywords
=
[
'buildout'
,
'sphinx'
,
'nose'
,
'recipe'
,
'eggs'
,
'bob'
],
url
=
'https://gitlab.idiap.ch/bob/bob.buildout'
,
license
=
'BSD'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment