From cdcc62972d42f009f55e6aeb2ca5c60c3acd75eb Mon Sep 17 00:00:00 2001
From: Dan Klein <danklei@cisco.com>
Date: Wed, 26 Aug 2015 14:27:43 +0300
Subject: added dpkt package, initial stateless client implementation

---
 .../python_lib/dpkt-1.8.6.2/docs/conf.py           | 76 ----------------------
 1 file changed, 76 deletions(-)
 delete mode 100644 scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/conf.py

(limited to 'scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/conf.py')

diff --git a/scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/conf.py b/scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/conf.py
deleted file mode 100644
index 6dfc9fc4..00000000
--- a/scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/conf.py
+++ /dev/null
@@ -1,76 +0,0 @@
-# encoding: utf-8
-
-"""dpkt documentation build configuration file"""
-
-from __future__ import unicode_literals
-
-import os
-import re
-import sys
-import types
-import mock
-
-
-def get_version(filename):
-    init_py = open(filename).read()
-    metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_py))
-    return metadata['version']
-
-
-# -- Workarounds to have autodoc generate API docs ----------------------------
-
-sys.path.insert(0, os.path.abspath('..'))
-
-
-# Mock any objects that we might need to
-foo = mock.Mock()
-foo.__version__ = '0.1.1'
-sys.modules['foo'] = foo
-
-
-# -- General configuration ----------------------------------------------------
-needs_sphinx = '1.0'
-extensions = [
-    'sphinx.ext.autodoc',
-    'sphinx.ext.extlinks',
-    'sphinx.ext.intersphinx',
-    'sphinx.ext.viewcode',
-    'sphinx.ext.autosummary',
-    'sphinxcontrib.napoleon'
-]
-
-templates_path = ['_templates']
-source_suffix = '.rst'
-master_doc = 'index'
-
-project = 'dpkt'
-copyright = '2009-2015 Dug Song and contributors'
-
-release = get_version('../dpkt/__init__.py')
-version = '.'.join(release.split('.')[:2])
-
-exclude_patterns = ['_build']
-
-pygments_style = 'sphinx'
-
-modindex_common_prefix = ['dpkt.']
-
-autodoc_default_flags = ['members', 'undoc-members', 'show-inheritance']
-autodoc_member_order = 'bysource'
-
-
-# -- Options for HTML output --------------------------------------------------
-html_theme = 'default'
-html_static_path = ['_static']
-
-html_use_modindex = True
-html_use_index = True
-html_split_index = False
-html_show_sourcelink = True
-
-htmlhelp_basename = 'dpkt'
-
-# -- Options for extlink extension --------------------------------------------
-extlinks = {
-    'issue': ('https://github.com/kbandla/dpkt/issues/%s', '#'),
-}
-- 
cgit