File: conf.py

package info (click to toggle)
django-taggit 6.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,332 kB
  • sloc: python: 4,599; makefile: 45; sh: 15
file content (18 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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),
}