Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions doc/scapy/backmatter.rst
Original file line number Diff line number Diff line change
@@ -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.
8 changes: 4 additions & 4 deletions doc/scapy/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'),
]


Expand All @@ -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)
]


Expand All @@ -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'),
]
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading