-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.83 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "exploitgraph"
version = "1.0.6"
description = "Automated attack path discovery and exploitation framework for cloud-native applications"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Prajwal Pawar", email = "prajwal@exploitgraph.io" }]
keywords = ["security", "pentesting", "cloud", "aws", "attack-path", "exploitation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
requires-python = ">=3.9"
dependencies = [
"requests>=2.31.0",
"colorama>=0.4.6",
"networkx>=3.2.0",
"jinja2>=3.1.2",
"PyJWT>=2.8.0",
"python-dotenv>=1.0.0",
"tabulate>=0.9.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
aws = ["boto3>=1.34.0", "botocore>=1.34.0"]
dev = ["pytest>=7.0", "black>=23.0", "flake8>=6.0", "mypy>=1.0"]
all = ["exploitgraph[aws,dev]"]
[project.scripts]
exploitgraph = "exploitgraph.cli:main"
[project.urls]
Homepage = "https://github.com/prajwalpawar/ExploitGraph"
Repository = "https://github.com/prajwalpawar/ExploitGraph"
"Bug Tracker" = "https://github.com/prajwalpawar/ExploitGraph/issues"
Documentation = "https://github.com/prajwalpawar/ExploitGraph/wiki"
[tool.setuptools.packages.find]
where = ["."]
include = ["exploitgraph*"]
[tool.setuptools.package-data]
"*" = ["data/wordlists/*.txt", "data/templates/*.j2", "*.yaml", "*.yml"]