forked from CobblePot59/ADcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 902 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
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "ADcheck"
version = "1.5"
description = "ADcheck, Assess the security of your Active Directory with few or all privileges."
readme = "README.md"
repository = "https://github.com/CobblePot59/ADcheck"
authors = ["CobblePot59"]
license = "GPL3"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
packages = [
{ include = "adcheck" }
]
[tool.poetry.dependencies]
python = ">=3.9"
six = "^1.16.0"
winacl = "^0.1.9"
asysocks = "^0.2.13"
asyauth = "^0.0.21"
unicrypto = "^0.0.10"
pyopenssl = "*"
ldap3 = "^2.9.1"
dnspython = "^2.7.0"
aiowmi = "^0.2.3"
niquests = "^3.10.0"
jinja2 = "^3.1.4"
plotly = "^5.24.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
adcheck = "adcheck.app:run_main"