forked from owasp-dep-scan/blint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (58 loc) · 1.77 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
[tool.poetry]
name = "blint"
version = "2.0.4"
description = "Linter and SBOM generator for binary files."
authors = ["Prabhu Subramanian <prabhu@appthreat.com>", "Caroline Russell <caroline@appthreat.dev>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/OWASP-dep-scan/blint"
repository = "https://github.com/OWASP-dep-scan/blint"
keywords = ["linter", "binary", "security", "sast"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Utilities",
"Topic :: Security",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
include = ["blint/data/*.yml"]
[tool.poetry.urls]
"CI" = "https://github.com/AppThreat/blint/actions"
[tool.poetry.scripts]
blint = 'blint.cli:main'
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
lief = "^0.14.0"
rich = "^13.7.0"
PyYAML = "^6.0.1"
defusedxml = "^0.7.1"
pydantic = {version = "^2.6.0", extras = ["email"]}
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
black = "^24.0.0"
flake8 = "^7.0.0"
pylint = "^3.0.0"
pytest-cov = "^4.0.0"
pyinstaller = "^6.3.0"
[tool.black]
line-length = 99
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--verbose --cov-append --cov-report term --cov blint"
[tool.pylint]
generated-members = ["lief"]
ignore-paths = ["blint/cyclonedx/*"]
# Let's not fuss about long strings
ignore-long-lines = "[r|f]\""
disable = ["missing-module-docstring", "logging-fstring-interpolation"]
[tool.pylint.format]
max-line-length = 99
[tool.pylint.design]
max-args = 6
max-nested-blocks = 6