blob: 79e603b4a342ec988b71e7f72b92e14a6f14ffa1 [file] [log] [blame]
Davide Pesavento786a7f22019-04-14 17:18:14 -04001# Configuration file for the Sphinx documentation builder.
2#
Davide Pesaventobd3642f2022-08-12 18:19:31 -04003# For the full list of built-in configuration values, see the documentation:
Davide Pesaventoa420e972021-02-25 00:56:25 -05004# https://www.sphinx-doc.org/en/master/usage/configuration.html
Junxiao Shi2219a052015-05-28 02:53:48 -07005
Davide Pesavento786a7f22019-04-14 17:18:14 -04006# -- Project information -----------------------------------------------------
Davide Pesaventobd3642f2022-08-12 18:19:31 -04007# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
Davide Pesavento786a7f22019-04-14 17:18:14 -04008
Davide Pesaventobd3642f2022-08-12 18:19:31 -04009project = 'NDN Essential Tools'
10copyright = 'Copyright © 2014-2022 Named Data Networking Project.'
11author = 'Named Data Networking Project'
Davide Pesavento786a7f22019-04-14 17:18:14 -040012
Davide Pesaventoa420e972021-02-25 00:56:25 -050013# The short X.Y version.
Davide Pesavento786a7f22019-04-14 17:18:14 -040014#version = ''
15
Davide Pesaventoa420e972021-02-25 00:56:25 -050016# The full version, including alpha/beta/rc tags.
Davide Pesavento786a7f22019-04-14 17:18:14 -040017#release = ''
18
19# There are two options for replacing |today|: either, you set today to some
20# non-false value, then it is used:
21#today = ''
22# Else, today_fmt is used as the format for a strftime call.
23today_fmt = '%Y-%m-%d'
24
25
26# -- General configuration ---------------------------------------------------
Davide Pesaventobd3642f2022-08-12 18:19:31 -040027# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Davide Pesavento786a7f22019-04-14 17:18:14 -040028
Davide Pesaventobd3642f2022-08-12 18:19:31 -040029needs_sphinx = '4.0'
Davide Pesavento786a7f22019-04-14 17:18:14 -040030extensions = [
31]
32
Davide Pesaventoa420e972021-02-25 00:56:25 -050033templates_path = ['_templates']
Davide Pesaventobd3642f2022-08-12 18:19:31 -040034exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
Davide Pesaventoa420e972021-02-25 00:56:25 -050035
Davide Pesavento786a7f22019-04-14 17:18:14 -040036
37# -- Options for manual page output ------------------------------------------
Davide Pesaventobd3642f2022-08-12 18:19:31 -040038# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-manual-page-output
Junxiao Shi2219a052015-05-28 02:53:48 -070039
40# One entry per manual page. List of tuples
41# (source start file, name, description, authors, manual section).
42man_pages = [
Davide Pesaventoa1a9d702020-03-29 00:58:15 -040043 ('ndnpeek', 'ndnpeek', 'simple consumer to send one Interest and receive one Data', [], 1),
44 ('ndnpoke', 'ndnpoke', 'simple producer to publish one Data', [], 1),
45 ('ndnping', 'ndnping', 'reachability testing client', [], 1),
46 ('ndnpingserver', 'ndnpingserver', 'reachability testing server', [], 1),
47 ('ndnputchunks', 'ndnputchunks', 'producer program with content segmentation', [], 1),
48 ('ndndump', 'ndndump', 'traffic analysis tool', [], 8),
49 ('ndn-dissect', 'ndn-dissect', 'NDN packet format inspector', [], 1),
Junxiao Shi2219a052015-05-28 02:53:48 -070050]