-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1 KB
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 = "binwalk-python-sdk"
version = "0.1.3"
description = "Python library for running binwalk"
authors = ["pUrGe12 <achintya.jai@owasp.org>"]
license = "MIT"
readme = "README.md"
packages = [{include = "pybinwalk"}]
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = ">=3.10"
[tool.poetry.group.dev.dependencies]
maturin = "^1.10.2"
patchelf = "^0.17.2.4"
[tool.isort]
profile = "black"
line_length = 99
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_first_party = ["pyba"]
no_inline_sort = true
skip = ["__init__.py"]
[tool.ruff]
line-length = 99
per-file-ignores = { "__init__.py" = ["ALL"]}
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
manifest-path = "rust/Cargo.toml"
module-name = "pybinwalk._rust"