-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.23 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
48
49
50
51
52
53
54
[tool.poetry]
name = "automatic-exploit-generation"
version = "0.1.0"
description = "Module for generating payloads for exploiting vulnerable executables"
authors = ["OpenCRS"]
license = "MIT"
readme = "README.md"
packages = [{include = "automatic_exploit_generation"}]
[tool.poetry.dependencies]
python = "^3.10"
pwntools = "^4.10.0"
docker = "^6.1.2"
grpcio = "^1.54.2"
protobuf = "^4.23.2"
click = "^8.1.3"
hexdump = "^3.3"
commons = {path = "../commons"}
zeratool_lib = {path = "../zeratool_lib"}
[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"
pytest = "^7.2.1"
[tool.poetry.group.dev.dependencies]
grpcio-tools = "^1.54.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
automatic_exploit_generation = "automatic_exploit_generation.cli:main"
[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