blob: 7c3ea9580af905c02767cbbb06e8a780d0f81b0c [file] [log] [blame]
Davide Pesavento786a7f22019-04-14 17:18:14 -04001# Configuration file for the Sphinx documentation builder.
2#
3# This file only contains a selection of the most common options. For a full
4# list see the documentation:
Davide Pesaventoa420e972021-02-25 00:56:25 -05005# https://www.sphinx-doc.org/en/master/usage/configuration.html
Junxiao Shi2219a052015-05-28 02:53:48 -07006
Davide Pesavento786a7f22019-04-14 17:18:14 -04007# -- Path setup --------------------------------------------------------------
8
9# If extensions (or modules to document with autodoc) are in another directory,
10# add these directories to sys.path here. If the directory is relative to the
11# documentation root, use os.path.abspath to make it absolute, like shown here.
12#
13# import os
14# import sys
15# sys.path.insert(0, os.path.abspath('.'))
16
17
18# -- Project information -----------------------------------------------------
19
20project = u'NDN Essential Tools'
Davide Pesavento96412a12022-03-05 13:34:23 -050021copyright = u'Copyright © 2014-2022 Named Data Networking Project.'
Davide Pesavento786a7f22019-04-14 17:18:14 -040022author = u'Named Data Networking Project'
23
Davide Pesaventoa420e972021-02-25 00:56:25 -050024# The short X.Y version.
Davide Pesavento786a7f22019-04-14 17:18:14 -040025#version = ''
26
Davide Pesaventoa420e972021-02-25 00:56:25 -050027# The full version, including alpha/beta/rc tags.
Davide Pesavento786a7f22019-04-14 17:18:14 -040028#release = ''
29
30# There are two options for replacing |today|: either, you set today to some
31# non-false value, then it is used:
32#today = ''
33# Else, today_fmt is used as the format for a strftime call.
34today_fmt = '%Y-%m-%d'
35
36
37# -- General configuration ---------------------------------------------------
38
39# If your documentation needs a minimal Sphinx version, state it here.
40#
Davide Pesaventoa420e972021-02-25 00:56:25 -050041needs_sphinx = '1.3'
Davide Pesavento786a7f22019-04-14 17:18:14 -040042
43# Add any Sphinx extension module names here, as strings. They can be
44# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
45# ones.
46extensions = [
47]
48
49# The master toctree document.
Alexander Afanasyevd2300732016-05-04 16:45:14 -070050master_doc = 'index'
51
Davide Pesaventoa420e972021-02-25 00:56:25 -050052# Add any paths that contain templates here, relative to this directory.
53templates_path = ['_templates']
54
55# List of patterns, relative to source directory, that match files and
56# directories to ignore when looking for source files.
57# This pattern also affects html_static_path and html_extra_path.
58exclude_patterns = ['Thumbs.db', '.DS_Store']
59
Davide Pesavento786a7f22019-04-14 17:18:14 -040060
61# -- Options for manual page output ------------------------------------------
Junxiao Shi2219a052015-05-28 02:53:48 -070062
63# One entry per manual page. List of tuples
64# (source start file, name, description, authors, manual section).
65man_pages = [
Davide Pesaventoa1a9d702020-03-29 00:58:15 -040066 ('ndnpeek', 'ndnpeek', 'simple consumer to send one Interest and receive one Data', [], 1),
67 ('ndnpoke', 'ndnpoke', 'simple producer to publish one Data', [], 1),
68 ('ndnping', 'ndnping', 'reachability testing client', [], 1),
69 ('ndnpingserver', 'ndnpingserver', 'reachability testing server', [], 1),
70 ('ndnputchunks', 'ndnputchunks', 'producer program with content segmentation', [], 1),
71 ('ndndump', 'ndndump', 'traffic analysis tool', [], 8),
72 ('ndn-dissect', 'ndn-dissect', 'NDN packet format inspector', [], 1),
Junxiao Shi2219a052015-05-28 02:53:48 -070073]
Davide Pesavento786a7f22019-04-14 17:18:14 -040074
75# If true, show URL addresses after external links.
76#man_show_urls = True