-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
67 lines (59 loc) · 1.19 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
[project]
name = "zeek-client"
dynamic = ["version"]
description = "A CLI for Zeek's Management Framework"
dependencies = [
"websocket-client>=1.8.0",
"argcomplete>=3.4.0",
"argparse>=1.4.0",
]
readme = "README.md"
requires-python = ">= 3.8"
license = {text = "3-clause BSD License"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Utilities",
]
keywords=[
"zeek",
"management",
"client",
"cluster",
]
[[project.maintainers]]
name = "The Zeek Project"
email = "[email protected]"
[project.urls]
Repository = "https://github.com/zeek/zeek-client"
[project.optional-dependencies]
dev = [
"pytest>=8.1.1",
"pytest-cov>=5.0.0",
]
[build-system]
requires = ["setuptools"]
[tool.setuptools]
packages = ["zeekclient"]
script-files = ["zeek-client"]
[tool.ruff.lint]
select = [
"A",
"B",
"C4",
"COM",
"F",
"I",
"ISC",
"N",
"UP",
]
ignore = [
"COM812",
"ISC001",
]