pwncat/pyproject.toml

57 lines
1.2 KiB
TOML
Raw Normal View History

[tool.isort]
profile = "black"
2021-06-13 20:38:05 +00:00
length_sort = true
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
addopts = "-v"
[tool.poetry]
name = "pwncat-cs"
2021-12-07 16:12:11 +00:00
version = "0.5.1"
description = "Reverse and bind shell automation framework"
authors = ["Caleb Stewart <caleb.stewart94@gmail.com>", "John Hammond"]
readme = "README.md"
repository = "https://github.com/calebstewart/pwncat"
documentation = "https://pwncat.readthedocs.io"
keywords = ["offsec", "cyber", "exploitation", "privesc", "automation"]
packages = [
{ include = "pwncat" },
]
license = "MIT"
[tool.poetry.scripts]
pwncat-cs = "pwncat.__main__:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/calebstewart/pwncat/issues"
[tool.poetry.dependencies]
python = "^3.9"
netifaces = "^0.11.0"
packaging = "^20.9"
prompt-toolkit = "^3.0.19"
pycryptodome = "^3.10.1"
requests = "^2.25.1"
rich = "^10.4.0"
python-rapidjson = "^1.0"
ZODB3 = "^3.11.0"
zodburi = "^2.5.0"
Jinja2 = "^3.0.1"
2021-12-26 07:41:02 +00:00
paramiko-ng = "^2.8.8"
[tool.poetry.dev-dependencies]
isort = "^5.8.0"
pytest = "^6.2.4"
Sphinx = "^4.0.2"
sphinx-rtd-theme = "^0.5.2"
enum-tools = "^0.6.4"
flake8 = "^3.9.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"