2015-12-20 03:29:56 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import setuptools_scm
|
|
|
|
|
|
|
|
extensions = [
|
|
|
|
'sphinx.ext.autodoc',
|
|
|
|
]
|
|
|
|
|
|
|
|
# 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 = setuptools_scm.get_version(root='..', relative_to=__file__)
|
|
|
|
# The full version, including alpha/beta/rc tags.
|
|
|
|
release = version
|
|
|
|
|
|
|
|
master_doc = 'index'
|