-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 1003 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
37
38
39
40
41
42
43
44
45
46
[project]
name = "trace-summary"
version = "0.94.dev5" # Filled in automatically.
description = "Generates network traffic summaries"
dependencies = [
"pysubnettree"
]
requires-python = ">=3.10"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3',
'Topic :: System :: Networking',
'Topic :: Utilities',
]
[project.urls]
Repository = "https://github.com/zeek/trace-summary"
[[project.maintainers]]
name = "The Zeek Team"
email = "info@zeek.org"
[project.optional-dependencies]
dev = [
"btest>=1.2",
"build>=1.3.0",
]
[build-system]
requires = ["setuptools"]
[tool.ruff.lint]
select = ["C4", "F", "I", "ISC", "UP"]
[tool.setuptools]
script-files = ["trace-summary"]
packages = []
[tool.setuptools.data-files]
"share/man/man1" = ["trace-summary.1",]