-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
36 lines (29 loc) · 894 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["pcapng_utils*"]
namespaces = false
[project]
name = "pcapng-utils"
version = "1.0.8"
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.0",
"sortedcontainers==2.4.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:cli"
[project.urls]
repository = "https://github.com/PiRogueToolSuite/pcapng-utils"
issues = "https://github.com/PiRogueToolSuite/pcapng-utils/issues"