1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Fixing manpage section
The default section for the sphinx-generated
man page is section 1. This is a library and
so the man page belongs in section 3.
Author: Stewart Ferguson <stew@ferg.aero>
Forwarded: https://github.com/enthought/apptools/pull/89
Last-Update: 2019-02-03
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -187,3 +187,9 @@ latex_documents = [
# If false, no module index is generated.
#latex_use_modindex = True
+
+# Grouping the document tree into Man pages. List of tuples
+# (startdocname, name, description, authors, section)
+man_pages = [
+ ( master_doc, project, project + ' ' + version, 'Enthought', 3 )
+]
|