forked from secdev/scapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
93 lines (83 loc) · 2.25 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = [ "setuptools>=62.0.0" ]
build-backend = "setuptools.build_meta"
[project]
name = "scapy"
dynamic = [ "version", "readme" ]
authors = [
{ name="Philippe BIONDI" },
]
maintainers = [
{ name="Pierre LALET" },
{ name="Gabriel POTTER" },
{ name="Guillaume VALADON" },
{ name="Nils WEISS" },
]
license = { text="GPL-2.0-only" }
requires-python = ">=3.7, <4"
description = "Scapy: interactive packet manipulation tool"
keywords = [ "network" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Security",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Monitoring",
]
[project.urls]
homepage = "https://scapy.net"
documentation = "https://scapy.readthedocs.io"
repository = "https://github.com/secdev/scapy"
changelog = "https://github.com/secdev/scapy/releases"
[project.scripts]
scapy = "scapy.main:interact"
[project.optional-dependencies]
cli = [ "ipython" ]
all = [
"ipython",
"pyx",
"cryptography>=2.0",
"matplotlib",
]
docs = [
"sphinx>=7.0.0",
"sphinx_rtd_theme>=1.3.0",
"tox>=3.0.0",
]
# setuptools specific
[tool.setuptools]
zip-safe = false # We use __file__ in scapy/__init__.py, therefore Scapy isn't zip safe
[tool.setuptools.packages.find]
include = [
"scapy*",
]
exclude = [
"test*",
"doc*",
]
[tool.setuptools.dynamic]
version = { attr="scapy.VERSION" }
# coverage
[tool.coverage.run]
concurrency = [ "thread", "multiprocessing" ]
source = [ "scapy" ]
omit = [
# Scapy tools
"scapy/tools/",
# Scapy external modules
"scapy/libs/six.py",
"scapy/libs/winpcapy.py",
"scapy/libs/ethertypes.py",
]