forked from fortalice/bofhound
-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
49 lines (45 loc) · 1.03 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
[tool.poetry]
name = "bofhound"
version = "0.4.3"
description = "Parse output from common sources and transform it into BloodHound-ingestible data"
authors = [
"Adam Brown",
"Matt Creel"
]
readme = "README.md"
homepage = "https://github.com/coffeegist/bofhound"
repository = "https://github.com/coffeegist/bofhound"
include = ["CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.10"
asn1crypto = "^1.5.1"
click = "^8.0"
typer = "^0.9"
bloodhound = "^1.6"
cffi = "^1.15"
chardet = "^4.0"
cryptography = "^36.0"
dnspython = "^2.2"
Flask = "^2.0"
future = "^0.18.2"
impacket = "^0.10.0"
itsdangerous = "^2.0.1"
Jinja2 = "^3.0.3"
ldap3 = "^2.9.1"
ldapdomaindump = "^0.9.3"
MarkupSafe = "^2.0.1"
pyasn1 = "^0.4.8"
pycparser = "^2.21"
pycryptodomex = "^3.14.0"
pyOpenSSL = "^22.0.0"
six = "^1.16.0"
Werkzeug = "^2.0.2"
rich = "^12.5"
[tool.poetry.dev-dependencies]
pylint = "^2.13"
pytest = "^7.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
bofhound = "bofhound.__main__:app"