wolframalpha/docs/conf.py

40 lines
766 B
Python
Raw Normal View History

2015-12-20 03:29:56 +00:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import pkg_resources
2015-12-20 03:29:56 +00:00
extensions = [
'sphinx.ext.autodoc',
'rst.linker',
2015-12-20 03:29:56 +00:00
]
# General information about the project.
project = 'skeleton'
2016-01-01 14:03:11 +00:00
copyright = '2016 Jason R. Coombs'
2015-12-20 03:29:56 +00:00
# The short X.Y version.
version = pkg_resources.require(project)[0].version
2015-12-20 03:29:56 +00:00
# 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,
),
replace=[
dict(
pattern=r"(Issue )?#(?P<issue>\d+)",
url='{GH}/jaraco/{project}/issues/{issue}',
),
dict(
pattern=r"^(?m)((?P<scm_version>v?\d+(\.\d+){1,2}))\n[-=]+\n",
with_scm="{text}\n{rev[timestamp]:%d %b %Y}\n",
),
],
),
}