import taggit

extensions = ["sphinx.ext.intersphinx"]

master_doc = "index"

project = "django-taggit"
copyright = "Alex Gaynor and individual contributors."

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

intersphinx_mapping = {
    "django": ("/usr/share/doc/python-django-doc/html", None),
    "python": ("/usr/share/doc/python3-doc/html", None),
}
