summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py15
1 files changed, 4 insertions, 11 deletions
diff --git a/docs/conf.py b/docs/conf.py
index be9b89c..40166c5 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,19 +1,13 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
-extensions = [
- 'sphinx.ext.autodoc',
- 'jaraco.packaging.sphinx',
- 'rst.linker',
-]
+extensions = ['sphinx.ext.autodoc', 'jaraco.packaging.sphinx', 'rst.linker']
master_doc = "index"
link_files = {
'../CHANGES.rst': dict(
- using=dict(
- GH='https://github.com',
- ),
+ using=dict(GH='https://github.com'),
replace=[
dict(
pattern=r'(Issue #|\B#)(?P<issue>\d+)',
@@ -29,9 +23,8 @@ link_files = {
),
dict(
pattern=r'Setuptools #(?P<setuptools_issue>\d+)',
- url='https://github.com/pypa/setuptools'
- '/issues/{setuptools_issue}/',
+ url='https://github.com/pypa/setuptools' '/issues/{setuptools_issue}/',
),
],
- ),
+ )
}