Rely on jaraco.packaging for loading the package metadata from the package for Sphinx.

master
Jason R. Coombs 7 years ago
parent b9bcd86948
commit 908cf4ad0e
  1. 27
      docs/conf.py
  2. 3
      docs/requirements.txt

@ -1,46 +1,23 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import sys
import subprocess
import datetime
if 'check_output' not in dir(subprocess):
import subprocess32 as subprocess
extensions = [
'sphinx.ext.autodoc',
'jaraco.packaging.sphinx',
'rst.linker',
]
# General information about the project.
root = os.path.join(os.path.dirname(__file__), '..')
setup_script = os.path.join(root, 'setup.py')
fields = ['--name', '--version', '--url', '--author']
dist_info_cmd = [sys.executable, setup_script] + fields
output_bytes = subprocess.check_output(dist_info_cmd, cwd=root)
project, version, url, author = output_bytes.decode('utf-8').strip().split('\n')
copyright = author
# The full version, including alpha/beta/rc tags.
release = version
master_doc = 'index'
link_files = {
'../CHANGES.rst': dict(
using=dict(
GH='https://github.com',
project=project,
url=url,
),
replace=[
dict(
pattern=r"(Issue )?#(?P<issue>\d+)",
url='{url}/issues/{issue}',
url='{package_url}/issues/{issue}',
),
dict(
pattern=r"^(?m)((?P<scm_version>v?\d+(\.\d+){1,2}))\n[-=]+\n",

@ -1,3 +1,4 @@
.
sphinx
rst.linker
jaraco.packaging>=3.2
rst.linker>=1.9

Loading…
Cancel
Save