-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
47 lines (39 loc) · 1002 Bytes
/
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
[tool.poetry]
name = "hoppr-cop"
version = "1.1.10"
description = ""
authors = ["kganger <[email protected]>"]
license = "MIT"
[[tool.poetry.packages]]
include = "hopprcop"
[tool.poetry.dependencies]
python = "^3.10"
cvss = "^2.5"
hoppr = "^1.8.0"
hoppr-cyclonedx-models = "0.*"
hoppr-security-commons = "0.*"
packageurl-python = "0.*"
PyYAML = "^6.0"
rich = ">12.5.1"
tinydb = "^4.7.0"
typer = "0.*"
[tool.poetry.group.dev.dependencies]
mkdocs = "^1.3.1"
mkdocs-glightbox = "0.*"
mkdocs-mermaid2-plugin = "0.*"
pygments = "^2.14.0"
pymdown-extensions = "^10.0.0"
[tool.poetry.group.test.dependencies]
coverage = "^7.0.0"
pytest = "7.4.0"
[tool.poetry.scripts]
hoppr-cop = "hopprcop.combined.cli:app"
[tool.poetry.plugins."hoppr.plugin"]
hopprcop_plugin = "hopprcop.hoppr_plugin.hopprcop_plugin:HopprCopPlugin"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
black = "^23.0.0"
pylint = "^2.14.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"