-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 827 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 827 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
[build-system]
requires = [
"setuptools ~= 80.9",
"setuptools-scm ~= 9.2",
"setuptools-download ~= 1.1"
]
build-backend = "setuptools.build_meta"
[project]
name = "trivy_py"
authors = [
{ name = "Gauke Teijema", email = "44612327+GaukeT@users.noreply.github.com" },
]
description = "Python wrapper around invoking trivy (https://trivy.dev/)"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
requires-python = ">=3.9"
dynamic = [
"version",
]
[project.urls]
Repository = "https://github.com/GaukeT/pre-commit-mirrors-trivy"
[tool.setuptools_scm]