-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
102 lines (98 loc) · 2.42 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["cloudpwn"]
[project]
name = "cloudpwn"
version = "0.0.1"
authors = [
{ name = "Aju Tamang" },
]
description = "Perform enumeration and generate reports of public cloud!"
keywords = ["cloud security"]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3.12",
"Intended Audience :: Pentester",
]
dependencies = [
"boto3==1.35.67",
"botocore==1.35.67",
"click==8.1.7",
"jmespath==1.0.1",
"markdown-it-py==3.0.0",
"mdurl==0.1.2",
"Pygments==2.18.0",
"python-dateutil==2.9.0.post0",
"rich==13.9.4",
"s3transfer==0.10.4",
"shellingham==1.5.4",
"six==1.16.0",
"typer==0.13.1",
"typing_extensions==4.12.2",
"urllib3==2.2.3",
"black==24.10.0",
"mypy-extensions==1.0.0",
"packaging==24.2",
"pathspec==0.12.1",
"platformdirs==4.3.6",
"astroid==3.3.5",
"dill==0.3.9",
"isort==5.13.2",
"mccabe==0.7.0",
"pylint==3.3.1",
"tomlkit==0.13.2",
"PyYAML==6.0.2",
"bandit==1.7.10",
"pbr==6.1.0",
"stevedore==5.4.0",
"mypy==1.13.0",
"flake8==7.1.1",
"pycodestyle==2.12.1",
"pyflakes==3.2.0",
"autopep8==2.3.1",
"tabulate==0.9.0",
"types-tabulate==0.9.0.20240106",
"boto3-stubs==1.35.68",
"botocore-stubs==1.35.68",
"types-awscrt==0.23.0",
"types-s3transfer==0.10.4",
"ghp-import==2.1.0",
"jinja2==3.1.4",
"markdown==3.7",
"mergedeep==1.3.4",
"mkdocs==1.6.1",
"mkdocs-get-deps==0.2.0",
"pyyaml-env-tag==0.1",
"watchdog==6.0.0",
"pymdown-extensions==10.12",
"babel==2.16.0",
"certifi==2024.8.30",
"charset-normalizer==3.4.0",
"colorama==0.4.6",
"idna==3.10",
"mkdocs-material==9.5.45 ",
"mkdocs-material-extensions==1.3.1",
"paginate==0.5.7",
"regex==2024.11.6",
"requests==2.32.3",
"cyclic==1.0.0",
"mdx_include==1.4.2",
"rcslice==1.1.0",
"markdown-include-variants==0.0.3",
"hjson==3.1.0",
"mkdocs-macros-plugin==1.3.7",
"super-collections==0.5.3",
"termcolor==2.5.0",
"mkdocs-redirects==1.2.2",
"mkdocs-autorefs==1.2.0",
"mkdocstrings==0.27.0",
"MarkupSafe==3.0.2"
]
[project.urls]
Repository = "https://github.com/ajutamangdev/cloudpwn"
[project.scripts]
cloudpwn = "cloudpwn.main:main"