blob: d7073541050284f18fbbe6c73b92d92412c0dc71 [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'
Davide Pesavento8ca94572025-04-20 14:52:00 -040010copyright = 'Copyright © 2014-2025 Named Data Networking Project.'
Davide Pesaventobd3642f2022-08-12 18:19:31 -040011author = '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 Pesavento6b430e92022-09-18 18:16:02 -040030extensions = []
Davide Pesavento786a7f22019-04-14 17:18:14 -040031
Davide Pesavento3d7b0332022-10-05 15:30:02 -040032exclude_patterns = ['Thumbs.db', '.DS_Store']
Davide Pesaventoa420e972021-02-25 00:56:25 -050033
Davide Pesavento786a7f22019-04-14 17:18:14 -040034
35# -- Options for manual page output ------------------------------------------
Davide Pesaventobd3642f2022-08-12 18:19:31 -040036# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-manual-page-output
Junxiao Shi2219a052015-05-28 02:53:48 -070037
38# One entry per manual page. List of tuples
39# (source start file, name, description, authors, manual section).
40man_pages = [
Davide Pesavento9907cc12025-04-20 23:30:06 -040041 ('ndndissect', 'ndndissect', 'NDN packet format inspector', [], 1),
42 ('ndndump', 'ndndump', 'NDN traffic analysis tool', [], 8),
43 ('ndnpeek', 'ndnpeek', 'simple NDN consumer to send one Interest and receive one Data', [], 1),
44 ('ndnpoke', 'ndnpoke', 'simple NDN producer to publish one Data', [], 1),
45 ('ndnping', 'ndnping', 'NDN reachability testing client', [], 1),
46 ('ndnpingserver', 'ndnpingserver', 'NDN reachability testing server', [], 1),
47 ('ndnserve', 'ndnserve', 'NDN producer with content segmentation', [], 1),
Junxiao Shi2219a052015-05-28 02:53:48 -070048]