-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
87 lines (76 loc) · 1.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "monkey-agentpluginapi"
license = "GPLv3"
requires-python = "^3.11"
[tool.black]
line-length = 100
[tool.cruft]
skip = [
"agentpluginapi/__init__.py",
"README.md",
"CHANGELOG.md",
"vulture_allowlist.py"
]
[tool.isort]
known_first_party = "agentpluginapi"
line_length = 100
skip_glob="**/__init__.py"
### for compatibility with black
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.mypy]
check_untyped_defs = true
[tool.pytest.ini_options]
minversion = "6.0"
log_cli = 1
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s [%(levelname)s] %(module)s.%(funcName)s.%(lineno)d: %(message)s"
log_cli_date_format = "%H:%M:%S"
addopts = "-v --capture=sys tests"
[tool.vulture]
exclude=[]
paths = ["agentpluginapi", "vulture_allowlist.py"]
[tool.poetry]
name = "monkey-agentpluginapi"
version = "v0.11.0"
description = "Interfaces and components that comprise the Infection Monkey Agent Plugin API"
authors = [
"Ilija Lazoroski <[email protected]>",
"Kekoa Kaaikala <[email protected]>",
"Mike Salvatore <[email protected]>",
"Shreya Malviya <[email protected]>",
"vakarisz <[email protected]>"
]
license = "GPLv3"
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.11"
]
repository = "https://github.com/guardicode/agentpluginapi"
readme = "README.md"
packages = [{include="agentpluginapi"}]
include = ["CHANGELOG.md", "README.md"]
[tool.poetry.dependencies]
python = "^3.11"
monkey-types = "*"
monkeytoolbox = "*"
egg_timer = "^1.3.0"
monkeyevents = "^0.4.0"
[tool.poetry.dev-dependencies]
black = "23.9.1"
dlint = "0.14.1"
flake8 = "6.0.0"
isort = "5.12.0"
mypy = "1.5.1"
pudb = "^2022.1.2"
pynvim = "^0.4.3"
pytest = "^7.1.0"
pytest-cov = "^3.0.0"
pytest-xdist = "^3.3.1"
vulture = "2.9.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"