forked from byt3bl33d3r/pyMalleableC2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (27 loc) · 843 Bytes
/
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
[tool.poetry]
name = "pyMalleableC2"
version = "0.1.0"
description = "Python library that allows you to parse and build Cobalt Strike Malleable C2 Profiles programmatically."
authors = ["Marcello Salvati <[email protected]>"]
readme = "README.md"
license = "GPL-3.0-only"
homepage = "https://github.com/Porchetta-Industries/pyMalleableC2"
repository = "https://github.com/Porchetta-Industries/pyMalleableC2"
exclude = ["tests/", "examples/"]
include = ["README.md", "LICENSE", "malleablec2/grammar.lark"]
classifiers = [
"Topic :: Security",
]
packages = [
{ include = "malleablec2"}
]
[tool.poetry.dependencies]
python = "^3.6"
lark-parser = "^0.11.1"
[tool.poetry.dev-dependencies]
flake8 = "*"
black = "^20.8b1"
pytest = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"