blob: 5e7ad21f3cc5dcf5cab9d862e0a8eb59b8297af0 [file] [log] [blame]
Davide Pesavento786a7f22019-04-14 17:18:14 -04001# -*- coding: utf-8 -*-
2#
3# Configuration file for the Sphinx documentation builder.
4#
5# This file only contains a selection of the most common options. For a full
6# list see the documentation:
7# http://www.sphinx-doc.org/en/master/config
Junxiao Shi2219a052015-05-28 02:53:48 -07008
Davide Pesavento786a7f22019-04-14 17:18:14 -04009# -- Path setup --------------------------------------------------------------
10
11# If extensions (or modules to document with autodoc) are in another directory,
12# add these directories to sys.path here. If the directory is relative to the
13# documentation root, use os.path.abspath to make it absolute, like shown here.
14#
15# import os
16# import sys
17# sys.path.insert(0, os.path.abspath('.'))
18
19
20# -- Project information -----------------------------------------------------
21
22project = u'NDN Essential Tools'
Davide Pesaventoa1a9d702020-03-29 00:58:15 -040023copyright = u'Copyright © 2014-2020 Named Data Networking Project.'
Davide Pesavento786a7f22019-04-14 17:18:14 -040024author = u'Named Data Networking Project'
25
26# The short X.Y version
27#version = ''
28
29# The full version, including alpha/beta/rc tags
30#release = ''
31
32# There are two options for replacing |today|: either, you set today to some
33# non-false value, then it is used:
34#today = ''
35# Else, today_fmt is used as the format for a strftime call.
36today_fmt = '%Y-%m-%d'
37
38
39# -- General configuration ---------------------------------------------------
40
41# If your documentation needs a minimal Sphinx version, state it here.
42#
43needs_sphinx = '1.1'
44
45# Add any Sphinx extension module names here, as strings. They can be
46# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
47# ones.
48extensions = [
49]
50
51# The master toctree document.
Alexander Afanasyevd2300732016-05-04 16:45:14 -070052master_doc = 'index'
53
Davide Pesavento786a7f22019-04-14 17:18:14 -040054
55# -- Options for manual page output ------------------------------------------
Junxiao Shi2219a052015-05-28 02:53:48 -070056
57# One entry per manual page. List of tuples
58# (source start file, name, description, authors, manual section).
59man_pages = [
Davide Pesaventoa1a9d702020-03-29 00:58:15 -040060 ('ndnpeek', 'ndnpeek', 'simple consumer to send one Interest and receive one Data', [], 1),
61 ('ndnpoke', 'ndnpoke', 'simple producer to publish one Data', [], 1),
62 ('ndnping', 'ndnping', 'reachability testing client', [], 1),
63 ('ndnpingserver', 'ndnpingserver', 'reachability testing server', [], 1),
64 ('ndnputchunks', 'ndnputchunks', 'producer program with content segmentation', [], 1),
65 ('ndndump', 'ndndump', 'traffic analysis tool', [], 8),
66 ('ndn-dissect', 'ndn-dissect', 'NDN packet format inspector', [], 1),
Junxiao Shi2219a052015-05-28 02:53:48 -070067]
Davide Pesavento786a7f22019-04-14 17:18:14 -040068
69# If true, show URL addresses after external links.
70#man_show_urls = True