Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import randomgen
# -- Project information -----------------------------------------------------
project = 'RandomGen'
copyright = '2018, Kevin Sheppard'
author = 'Kevin Sheppard'
# The short X.Y version.
version = randomgen.__version__
if '+' in version:
version = version.split('+')
version = ''.join((version[0], ' (+', version[1].split('.')[0], ')'))
# The full version, including alpha/beta/rc tags.
release = randomgen.__version__
# -- 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.napoleon',
'sphinx.ext.autodoc',
'sphinx.ext.extlinks',
'sphinx.ext.todo',
'sphinx.ext.doctest',
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
import guzzle_sphinx_theme
import randomgen
# -- Project information -----------------------------------------------------
project = 'RandomGen'
copyright = '2018, Kevin Sheppard'
author = 'Kevin Sheppard'
# The short X.Y version.
version = randomgen.__version__
if '+' in version:
version = version.split('+')
version = ''.join((version[0], ' (+', version[1].split('.')[0], ')'))
# The full version, including alpha/beta/rc tags.
release = randomgen.__version__
# -- 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 = [
import randomgen
# -- Project information -----------------------------------------------------
project = "RandomGen"
copyright = "2018, Kevin Sheppard"
author = "Kevin Sheppard"
# The short X.Y version.
version = randomgen.__version__
if "+" in version:
version = version.split("+")
version = "".join((version[0], " (+", version[1].split(".")[0], ")"))
# The full version, including alpha/beta/rc tags.
release = randomgen.__version__
# -- 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.napoleon",
"sphinx.ext.autodoc",
"sphinx.ext.extlinks",
"sphinx.ext.todo",
"sphinx.ext.doctest",
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
import randomgen
# -- Project information -----------------------------------------------------
project = "RandomGen"
copyright = "2018, Kevin Sheppard"
author = "Kevin Sheppard"
# The short X.Y version.
version = randomgen.__version__
if "+" in version:
version = version.split("+")
version = "".join((version[0], " (+", version[1].split(".")[0], ")"))
# The full version, including alpha/beta/rc tags.
release = randomgen.__version__
# -- 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 = [