1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
import pyroute2
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.inheritance_diagram',
'aafigure.sphinxext',
'code_include.extension',
]
aafig_format = {'html': 'svg', 'man': None, '': None}
inheritance_graph_attrs = {'rankdir': 'LR', 'ratio': 'auto'}
source_suffix = '.rst'
master_doc = 'index'
project = u'pyroute2'
copyright = u'Peter Saveliev and PyRoute2 team'
release = pyroute2.__version__
exclude_patterns = ['_build']
pygments_style = 'sphinx'
autodoc_member_order = 'bysource'
html_theme = 'default'
html_static_path = ['_static']
html_js_files = ['fixup.js']
html_css_files = ['custom.css']
htmlhelp_basename = 'pyroute2doc'
templates_path = ['_templates']
man_pages = [
(
'pyroute2-cli',
'pyroute2-cli',
'pyroute2 command line interface',
['Peter Saveliev'],
1,
),
(
'pyroute2-dhcp-client',
'pyroute2-dhcp-client',
'pyroute2 dhcp client',
['Peter Saveliev'],
1,
),
]
|