diff --git a/doc/scapy/backmatter.rst b/doc/scapy/backmatter.rst index 5c8df340f32..137cc0358bc 100644 --- a/doc/scapy/backmatter.rst +++ b/doc/scapy/backmatter.rst @@ -1,11 +1,18 @@ -********* +******* Credits -********* +******* -- Philippe Biondi is Scapy's author. He has also written most of the documentation. -- Pierre Lalet, Gabriel Potter, Guillaume Valadon, Nils Weiss are the current most active maintainers and contributors. +The maintainers of Scapy are: + - Gabriel Potter (Lead maintainer) + - Nils Weiss + - Guillaume Valadon + - Pierre Lalet + +Former maintainers include: + - Philippe Biondi, who was Scapy's original author. + +Other documentation credits include: - Fred Raynal wrote the chapter on building and dissecting packets. - Peter Kacherginsky contributed several tutorial sections, one-liners and recipes. - Dirk Loss integrated and restructured the existing docs to make this book. -- Nils Weiss contributed automotive specific layers and utilities. diff --git a/doc/scapy/conf.py b/doc/scapy/conf.py index 8776319cac8..be9480fb2f0 100644 --- a/doc/scapy/conf.py +++ b/doc/scapy/conf.py @@ -68,7 +68,7 @@ # General information about the project. project = 'Scapy' year = datetime.datetime.now().year -copyright = '2008-%s Philippe Biondi and the Scapy community' % year +copyright = '2008-%s The Scapy community' % year # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -168,7 +168,7 @@ # author, documentclass [howto, manual, or own class]). latex_documents = [ ('index', 'Scapy.tex', 'Scapy Documentation', - 'Philippe Biondi and the Scapy community', 'manual'), + 'The Scapy community', 'manual'), ] @@ -178,7 +178,7 @@ # (source start file, name, description, authors, manual section). man_pages = [ (master_doc, 'scapy', 'Scapy Documentation', - ['Philippe Biondi and the Scapy community'], 1) + ['The Scapy community'], 1) ] @@ -189,7 +189,7 @@ # dir menu entry, description, category) texinfo_documents = [ (master_doc, 'Scapy', 'Scapy Documentation', - 'Philippe Biondi and the Scapy community', 'Scapy', + 'The Scapy community', 'Scapy', '', 'Miscellaneous'), ] diff --git a/pyproject.toml b/pyproject.toml index 501096e4ac4..3e89fcf7dc0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,12 +7,13 @@ name = "scapy" dynamic = [ "version", "readme" ] authors = [ { name="Philippe BIONDI" }, + { name="Gabriel POTTER" }, ] maintainers = [ - { name="Pierre LALET" }, { name="Gabriel POTTER" }, - { name="Guillaume VALADON" }, { name="Nils WEISS" }, + { name="Guillaume VALADON" }, + { name="Pierre LALET" }, ] license = { text="GPL-2.0-only" } requires-python = ">=3.7, <4"