Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > b5b6865785440966f8f6149c548d6255 > files > 28

python3-iptools-0.6.1-1.fc18.noarch.rpm

# -*- coding: utf-8 -*-

import sys
import os
from datetime import date

sys.path.insert(0, os.path.abspath(os.path.join(os.getcwd(), '..')))
import iptools

extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode']
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = 'iptools'
copyright = '%s, Bryan Davis. All Rights Reserved' % date.today().year
version = iptools.__version__
release = version
exclude_patterns = ['_build']
pygments_style = 'sphinx'

on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
if on_rtd:
    html_theme = 'default'
else:
    html_theme = 'nature'
html_static_path = ['_static']
htmlhelp_basename = 'iptoolsdoc'

autodoc_member_order = 'groupwise'