-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
69 lines (57 loc) · 1.47 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
68
69
[build-system]
requires = [
"setuptools",
]
[project]
name = "zkg"
dynamic = ["version"]
description = "The Zeek Package Manager"
readme = "README"
requires-python = ">= 3.9"
keywords = [
"zeek",
"zeekctl",
"zeekcontrol",
"package",
"manager",
"scripts",
"plugins",
"security",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Utilities",
]
# NOTE: Keep `requirements.txt` in sync which we currently use e.g., for RTD.
dependencies = [
"GitPython>=3.1.43",
"semantic_version>=2.10.0",
# Technically not a zkg dependency, but typically expected by users to be present.
"btest>=1.1",
]
[project.optional-dependencies]
dev = [
"Sphinx>=7.2.6",
"sphinx_rtd_theme>=2.0.0",
]
[project.license]
file = "COPYING"
[project.urls]
Homepage = "https://docs.zeek.org/projects/package-manager"
Repository = "https://github.com/zeek/package-manager"
[[project.maintainers]]
name = "The Zeek Project"
email = "[email protected]"
[tool.setuptools]
packages = ["zeekpkg"]
script-files = ["zkg"]
[tool.distutils.bdist_wheel]
universal = true
[tool.ruff.lint]
select = ["A", "B", "C4", "COM", "F", "I", "ISC", "N", "RUF", "UP"]