Index: conf.py
===================================================================
--- conf.py (nonexistent)
+++ conf.py (revision 113)
@@ -0,0 +1,67 @@
+# -*- coding: utf-8 -*-
+
+import os
+import sys
+
+from sphinx.util import logging
+
+# https://github.com/sphinx-doc/sphinx/issues/10112
+logging.getLogger('sphinx.ext.extlinks').setLevel(40)
+
+dir_ = os.path.dirname(os.path.realpath(__file__))
+
+
+def exec_module(path):
+ import importlib.machinery
+ loader = importlib.machinery.SourceFileLoader("cairo", path)
+ return loader.load_module()
+
+
+sys.modules["cairo"] = exec_module(os.path.join(dir_, "..", "cairo", "__init__.pyi"))
+
+extensions = [
+ 'sphinx.ext.intersphinx',
+ 'sphinx.ext.extlinks',
+ 'sphinx.ext.autodoc',
+]
+intersphinx_mapping = {
+ 'python3': ('https://docs.python.org/3', None),
+}
+source_suffix = '.rst'
+master_doc = 'index'
+project = u'Pycairo'
+html_show_copyright = False
+exclude_patterns = ['_build']
+pygments_style = 'sphinx'
+html_theme = "sphinx_rtd_theme"
+html_theme_options = {
+ "display_version": False,
+}
+html_context = {
+ 'extra_css_files': [
+ '_static/extra.css',
+ ],
+}
+
+html_static_path = [
+ "extra.css",
+]
+
+extlinks = {
+ 'fdobug': ('https://bugs.freedesktop.org/show_bug.cgi?id=%s', '#fdo-%s'),
+ 'bug': ('https://github.com/pygobject/pycairo/issues/%s', '#%s'),
+ 'pr': ('https://github.com/pygobject/pycairo/pull/%s', '#pr-%s'),
+ 'user': ('https://github.com/%s', '%s'),
+}
+suppress_warnings = ["image.nonlocal_uri"]
+
+autoclass_content = 'class'
+
+autodoc_default_options = {
+ 'member-order': 'bysource',
+}
+
+autodoc_type_aliases = {
+ '_PathLike': 'cairo._PathLike',
+ '_FileLike': 'cairo._FileLike',
+}