summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJeremy Stanley <fungi@yuggoth.org>2021-06-16 16:01:48 +0000
committerJeremy Stanley <fungi@yuggoth.org>2021-07-10 16:45:05 +0000
commitaa21a0c61b1b665714f5b6e55ec202db9ddc22f1 (patch)
tree7539d3430b98c440ef5d871266299a10aabeef0e /doc
parent8e93a6b7b8d7df30521e745eb99c742715999646 (diff)
downloadgear-aa21a0c61b1b665714f5b6e55ec202db9ddc22f1.tar.gz
Overhaul package metadata and contributor info0.16.0
Modernize our package metadata in the following ways: * switch from description-file to long_description with the file attribute, and specify an explicit content type and encoding * replace the home-page parameter with the newer general url one * use the specific license metadata in addition to the corresponding trove classifier for it * make sure wheels when built also incorporate the LICENSE and AUTHORS files so that we're not distributing them without a copy of the license text * indicate support for all recent Python releases in trove classifiers * drop Python 3.4 cruft from the bindep list https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html Also replace the contributor documentation with a more up to date copy from opendev/bindep, and adjust the copyright assertions in the built Sphinx docs to refer to "OpenDev Contributors" and drop the unnecessary year. Change-Id: I39c5f5afc66edec0cf51709218f143b2a749eddd
Diffstat (limited to 'doc')
-rw-r--r--doc/source/conf.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 9f05b93..bde041d 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -42,7 +42,7 @@ master_doc = 'index'
# General information about the project.
project = 'Gear'
-copyright = '2013, OpenStack Foundation'
+copyright = 'OpenDev Contributors'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -185,7 +185,7 @@ latex_elements = {
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'Gear.tex', 'Gear Documentation',
- 'OpenStack Foundation', 'manual'),
+ 'OpenDev Contributors', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -215,9 +215,9 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'gear', 'Gear Full Documentation',
- ['OpenStack Foundation'], 1),
+ ['OpenDev Contributors'], 1),
('geard', 'geard', 'async pure python Gearman daemon',
- ['OpenStack Foundation'], 8),
+ ['OpenDev Contributors'], 8),
]
# If true, show URL addresses after external links.
@@ -231,7 +231,7 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'Gear', 'Gear Documentation',
- 'OpenStack Foundation', 'Gear', 'One line description of project.',
+ 'OpenDev Contributors', 'Gear', 'One line description of project.',
'Miscellaneous'),
]