28 lines
571 B
Python
28 lines
571 B
Python
import pkg_resources
|
|
|
|
dist = pkg_resources.get_distribution('linuxapi')
|
|
|
|
project = dist.project_name
|
|
version = release = dist.version
|
|
copyright = '2016, FireMon, LLC.'
|
|
author = 'Dustin C. Hatch'
|
|
|
|
extensions = [
|
|
'sphinx.ext.autodoc',
|
|
'sphinx.ext.intersphinx',
|
|
'sphinx.ext.viewcode',
|
|
]
|
|
|
|
templates_path = ['_templates']
|
|
source_suffix = '.rst'
|
|
master_doc = 'index'
|
|
language = None
|
|
exclude_patterns = ['_build']
|
|
pygments_style = 'sphinx'
|
|
todo_include_todos = False
|
|
autodoc_member_order = 'groupwise'
|
|
|
|
intersphinx_mapping = {
|
|
'http://docs.python.org/': None,
|
|
}
|