-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.39 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
59
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=2.0"]
# https://peps.python.org/pep-0621/
[project]
authors = [
{name = "Prowler Team", email = "engineering@prowler.com"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"iamdata>=0.1.202504091,<0.2.0"
]
description = "This is a Python package to expand and deobfuscate IAM policies."
license = "Apache-2.0"
maintainers = [
{name = "Prowler Team", email = "engineering@prowler.com"}
]
name = "py-iam-expand"
readme = "README.md"
requires-python = ">3.9.1,<3.15"
version = "0.3.0"
[project.scripts]
py-iam-expand = "py_iam_expand.__main__:main"
[project.urls]
"Changelog" = "https://github.com/prowler-cloud/py-iam-expand/releases"
"Documentation" = "https://docs.prowler.cloud"
"Homepage" = "https://github.com/prowler-cloud/py-iam-expand"
"Issue tracker" = "https://github.com/prowler-cloud/py-iam-expand/issues"
[tool.mypy]
allow_redefinition = true
files = ["./py_iam_expand"]
strict = true
[tool.poetry]
packages = [
{include = "py_iam_expand"}
]
requires-poetry = ">=2.0"
[tool.poetry.group.dev.dependencies]
bandit = "1.8.3"
mypy = "1.19.1"
pylint = "3.3.9"
pytest = "8.3.5"
pytest-cov = "7.0.0"
pytest-env = "1.1.5"
pytest-randomly = "3.16.0"
pytest-xdist = "3.8.0"
requests = "2.32.5"
ruff = "0.15.2"
safety = "3.7.0"
vulture = "2.14"