-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.54 KB
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
[build-system]
requires = ["setuptools>=68", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyADRecon-ADWS"
dynamic = ["version"]
description = "Python Active Directory Reconnaissance Tool (ADRecon port) using ADWS with NTLM support."
readme = "README.md"
requires-python = ">=3.9"
license-files = ["LICENSE"]
license = "MIT"
authors = [{ name = "LRVT" }]
keywords = ["active-directory", "active directory", "adws", "active directory web services", "ad", "recon", "reconnaissance", "enum", "enumeration", "adrecon", "pyadrecon", "security", "audit", "pentest", "adcs", "kerberoast"]
dependencies = [
"openpyxl>=3.1.5,<4",
"impacket>=0.13.0,<1",
"gssapi>=1.11.1,<2; sys_platform != 'win32'",
"winkerberos>=0.13.0,<1; sys_platform == 'win32'",
# Needed on Windows because hashlib/OpenSSL often has MD4 disabled, but NTLM needs MD4
"pycryptodome>=3.23.0,<4; sys_platform == 'win32'",
]
[project.urls]
Homepage = "https://github.com/l4rm4nd/PyADRecon-ADWS"
Repository = "https://github.com/l4rm4nd/PyADRecon-ADWS"
Issues = "https://github.com/l4rm4nd/PyADRecon-ADWS/issues"
[project.scripts]
pyadrecon-adws = "pyadrecon_adws:main"
pyadrecon_adws = "pyadrecon_adws:main"
[tool.setuptools]
py-modules = ["pyadrecon_adws", "dashboard_generator"]
[tool.setuptools.packages.find]
include = ["helpers*"]
# Version comes from Git tags like v0.11.0. CI will build from the tag ref.
[tool.setuptools_scm]
tag_regex = "^v(?P<version>\\d+\\.\\d+\\.\\d+)$"
version_scheme = "release-branch-semver"
local_scheme = "no-local-version"