예제 #1
0
# -- Project information -----------------------------------------------------

project = "cowrie"
copyright = "2014-2022, Michel Oosterhof"
author = "Michel Oosterhof"

# 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 = "{major}.{minor}".format(
    major=cowrie_version_object.major, minor=cowrie_version_object.minor
)
# The full version, including alpha/beta/rc tags.
release = cowrie_version_object.short()


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

# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
    "sphinx.ext.autodoc",
    "sphinx.ext.autosectionlabel",
    "sphinx.ext.coverage",
예제 #2
0
파일: conf.py 프로젝트: Mato-Z/cowrie
# -- Project information -----------------------------------------------------

project = 'cowrie'
copyright = '2018, Michel Oosterhof'
author = 'Michel Oosterhof'

# 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 = "{major}.{minor}".format(major=cowrie_version_object.major,
                                   minor=cowrie_version_object.minor)
# The full version, including alpha/beta/rc tags.
release = cowrie_version_object.short()


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

# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
    'sphinx.ext.autodoc',
    'sphinx.ext.coverage',
    'sphinx.ext.doctest',