-
-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 689 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 689 Bytes
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
[build-system]
requires = ["uv_build<0.12"]
build-backend = "uv_build"
[project]
name = "graphspy"
version = "1.7.0"
description = "Initial Access and Post-Exploitation Tool for Entra ID and M365 with a browser-based GUI."
authors = [
{name = "RedByte1337"}
]
license = {text = "BSD-3-Clause"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"flask>=3.0.0,<4.0.0",
"pyjwt>=2.8.0,<3.0.0",
"requests>=2.30.0,<3.0.0",
"pyotp>=2.9.0,<3.0.0",
"fido2>=2.0.0,<3.0.0",
"loguru>=0.7.0,<1.0.0",
"waitress>=3.0.0,<4.0.0",
]
[project.urls]
repository = "https://github.com/RedByte1337/GraphSpy"
[project.scripts]
graphspy = 'graphspy.cli:main'