-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (36 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
36 lines (36 loc) · 1.09 KB
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 = ["uv_build >= 0.11.0, <0.12.0"]
build-backend = "uv_build"
[project]
name = "serpico"
version = "0.2.2"
description = "Security scanner for FreeBSD packages and releases"
readme = "README.md"
authors = [
{ name = "Jesús Daniel Colmenares Oviedo", email = "DtxdF@disroot.org" }
]
requires-python = ">=3.11"
dependencies = [
"nvdlib>=0.8.3",
"xmltodict>=1.0.2",
]
license = "BSD-3-Clause"
license-files = ["LICENSE"]
keywords = ["security", "freebsd", "bsd", "scanner", "devsecops"]
classifiers = [
"Intended Audience :: System Administrators",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Topic :: Security",
"Topic :: Utilities",
"Topic :: System :: Monitoring"
]
[project.urls]
Homepage = "https://github.com/DtxdF/serpico"
Documentation = "https://github.com/DtxdF/serpico"
Repository = "https://github.com/DtxdF/serpico"
Issues = "https://github.com/DtxdF/serpico/issues"
Changelog = "https://github.com/DtxdF/serpico/releases"
[project.scripts]
serpico = "serpico:main"