blob: cd318c1ea8831ab665330e9acbd24e50646768dc [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 Pesaventocc02c362024-04-21 16:45:05 -040010copyright = 'Copyright © 2014-2024 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 Pesaventoa420e972021-02-25 00:56:25 -050032templates_path = ['_templates']
Davide Pesavento3d7b0332022-10-05 15:30:02 -040033exclude_patterns = ['Thumbs.db', '.DS_Store']
Davide Pesaventoa420e972021-02-25 00:56:25 -050034
Davide Pesavento786a7f22019-04-14 17:18:14 -040035
36# -- Options for manual page output ------------------------------------------
Davide Pesaventobd3642f2022-08-12 18:19:31 -040037# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-manual-page-output
Junxiao Shi2219a052015-05-28 02:53:48 -070038
39# One entry per manual page. List of tuples
40# (source start file, name, description, authors, manual section).
41man_pages = [
Davide Pesaventoa1a9d702020-03-29 00:58:15 -040042 ('ndnpeek', 'ndnpeek', 'simple consumer to send one Interest and receive one Data', [], 1),
43 ('ndnpoke', 'ndnpoke', 'simple producer to publish one Data', [], 1),
44 ('ndnping', 'ndnping', 'reachability testing client', [], 1),
45 ('ndnpingserver', 'ndnpingserver', 'reachability testing server', [], 1),
46 ('ndnputchunks', 'ndnputchunks', 'producer program with content segmentation', [], 1),
47 ('ndndump', 'ndndump', 'traffic analysis tool', [], 8),
48 ('ndn-dissect', 'ndn-dissect', 'NDN packet format inspector', [], 1),
Junxiao Shi2219a052015-05-28 02:53:48 -070049]