-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 993 Bytes
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 993 Bytes
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
[tool.poetry]
name = "attack_surface_approximation"
description = "Module for approximating the attack surface of an executable"
authors = ["OpenCRS"]
version = "0.1.0"
[tool.poetry.dependencies]
python = "^3.12"
pycparser = "^2.21"
pyelftools = "^0.28"
docker = "^6.1.2"
rich = "^12.5.1"
click = "^8.1.3"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
isort = "^5.10.1"
pylint = "^2.14.4"
pyproject-flake8 = "^0.0.1-alpha.5"
flake8-annotations = "^2.9.1"
[tool.poetry.scripts]
attack_surface_approximation = "attack_surface_approximation.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.MASTER]
init-hook="import sys; sys.path.append('.')"
[tool.pylint.MESSAGES_CONTROL]
disable="missing-function-docstring, missing-class-docstring, missing-module-docstring"
[tool.flake8]
extend-ignore = "ANN101,"
max-line-length=88
per-file-ignores = """
./**/__init__.py: F401
"""
[tool.black]
line-length = 79
preview = true