-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 935 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 935 Bytes
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>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "pcapcase"
version = "1.1.0"
description = "Offline network forensics CLI for evidence-backed PCAP triage"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "PCAPCase contributors" }]
keywords = ["pcap", "forensics", "tshark", "dfir", "network-security"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: System :: Networking :: Monitoring",
]
dependencies = []
[project.optional-dependencies]
test = ["pytest>=7"]
yara = ["yara-python>=4.5"]
[project.scripts]
pcapcase = "pcapcase.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]