-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
56 lines (48 loc) · 1.36 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["pcapng_utils*"]
namespaces = false
[project]
name = "pcapng-utils"
version = "1.1.0"
description = "A set of Python scripts to manipulate PCAPNG files"
readme = "README.md"
license = {text = "GPL-3.0+ AND MIT"}
requires-python = ">= 3.11"
dependencies = [
"communityid==1.5.*",
"sortedcontainers==2.4.*",
"tyro==1.0.*",
]
authors = [
{name = "Étienne Maheux (PEReN)", email = "etienne.maheux@peren.gouv.fr"},
{name = "Esther Onfroy (PEReN)", email = "esther.onfroy@peren.gouv.fr"},
]
maintainers = [
{name = "U+039b", email = "hello@pts-project.org"}
]
[project.scripts]
pcapng_to_har = "pcapng_utils.pcapng_to_har:PcapngToHar.cli"
dump_tshark_layers_as_json = "pcapng_utils.tshark.wrapper:cli_dump_tshark_layers_as_json"
[project.urls]
repository = "https://github.com/PiRogueToolSuite/pcapng-utils"
issues = "https://github.com/PiRogueToolSuite/pcapng-utils/issues"
[dependency-groups]
docs = [
"autoclasstoc>=1.7",
"autodoc-pydantic>=2.2",
"myst-parser",
"sphinx>=8.1.3",
"sphinx-autobuild",
"sphinx-copybutton",
"sphinx-hoverxref>=1.4.2",
"sphinx-jsonschema",
"sphinx-needs",
"sphinx-notfound-page>=1.0.4",
"sphinx-pydantic>=0.1.1",
"sphinx-rtd-theme",
"sphinx-toolbox",
"sphinxcontrib-datatemplates>=0.11",
]