How to use the splitwise.__version__ function in splitwise

To help you get started, we’ve selected a few splitwise examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github namaggarwal / splitwise / docs / conf.py View on Github external
import os
import sys

sys.path.insert(0, os.path.abspath('..'))

import splitwise  # noqa: E402


# -- Project information -----------------------------------------------------

project = 'splitwise'
copyright = '2020, <a href="https://naman.io">Naman Aggarwal</a>'
author = 'Naman Aggarwal'

# The short X.Y version.
version = splitwise.__version__
# The full version, including alpha/beta/rc tags.
release = splitwise.__version__


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

# 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.viewcode",
    "sphinx.ext.intersphinx"
]
github namaggarwal / splitwise / docs / conf.py View on Github external
sys.path.insert(0, os.path.abspath('..'))

import splitwise  # noqa: E402


# -- Project information -----------------------------------------------------

project = 'splitwise'
copyright = '2020, <a href="https://naman.io">Naman Aggarwal</a>'
author = 'Naman Aggarwal'

# The short X.Y version.
version = splitwise.__version__
# The full version, including alpha/beta/rc tags.
release = splitwise.__version__


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

# 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.viewcode",
    "sphinx.ext.intersphinx"
]

autoclass_content = "both"