-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
73 lines (63 loc) · 1.91 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
69
70
71
72
73
[tool.poetry]
name = "blint"
version = "2.3.2"
description = "Linter and SBOM generator for binary files."
authors = ["Prabhu Subramanian <[email protected]>", "Caroline Russell <[email protected]>"]
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",
"Programming Language :: Python :: 3.13",
"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.14"
lief = "~0.15.1"
rich = "^13.7.1"
PyYAML = "^6.0.1"
defusedxml = "^0.7.1"
pydantic = {version = "^2.8.2", extras = ["email"]}
orjson = "^3.10.6"
symbolic = "10.2.1"
ar = "^0.9.1"
custom-json-diff = "~2.1.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
black = "^24.4.2"
flake8 = "^7.1.0"
pylint = "^3.2.6"
pytest-cov = "^4.1.0"
pyinstaller = "^6.9.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", "orjson"]
ignore-paths = ["blint/cyclonedx/*", "tests/*"]
# 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