Skip to content

Commit 5501b56

Browse files
committed
chore: update README.md
1 parent 27ad6b2 commit 5501b56

3 files changed

Lines changed: 18 additions & 4 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
*.egg-info
2+
.eggs
23
/.tox
34
/build
45
/dist
5-
.idea
6+
.idea
7+
/tmp

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
[![build status](https://github.com/GaukeT/pre-commit-mirrors-trivy/actions/workflows/main.yml/badge.svg)](https://github.com/GaukeT/pre-commit-mirrors-trivy/actions/workflows/main.yml)
22

3-
# pre-commit-mirrors-trivy
3+
# trivy-py
44

5-
pre-commit hook that mirrors the trivy for usage as pre-commit language
5+
A python wrapper to provide a pip-installable [trivy] binary.
66

77
Internally this package provides a convenient way to download the pre-built
88
trivy binary for your particular platform.
99

10+
### installation
11+
12+
```bash
13+
pip install trivy-py
14+
```
15+
16+
### usage
17+
18+
After installation, the `trivy` binary should be available in your
19+
environment (or `trivy.exe` on windows).
20+
1021
### As a pre-commit hook
1122

1223
See [pre-commit] for instructions

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = trivy_py
3-
version = 0.66.0
3+
version = 0.66.0.1
44
description = Python wrapper around invoking trivy (https://trivy.dev/)
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -13,6 +13,7 @@ classifiers =
1313
Programming Language :: Python :: 3
1414
Programming Language :: Python :: 3 :: Only
1515
Programming Language :: Python :: Implementation :: CPython
16+
Programming Language :: Python :: Implementation :: PyPy
1617

1718
[options]
1819
python_requires = >=3.9

0 commit comments

Comments
 (0)