-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.23 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
[tool.poetry]
name = "iam-ape"
version = "1.1.5"
description = "IAM AWS Permissions Evaluator"
authors = ["Tohar Braun, Orca Security <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/orcasecurity/orca-toolbox/raw/main/iam-ape/"
repository = "https://github.com/orcasecurity/orca-toolbox/raw/main/iam-ape/"
keywords = ["aws", "iam"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
[tool.poetry.dependencies]
python = "^3.8"
boto3 = "^1.24.0"
requests = "^2.27.1"
beautifulsoup4 = "^4.8.2"
tqdm = "^4.63.0"
[tool.poetry.group.dev.dependencies]
black = "^22.1.0"
pytest = "^7.2.1"
types-requests = "^2.28.11.12"
mypy = "^1.0.0"
flake8 = "*"
isort = "*"
boto3-stubs = {extras = ["essential"], version = "^1.26.115"}
[tool.setuptools.package-data]
iam-ape = ["iam_ape/aws_iam_actions/*.tar.gz", "iam_ape/py.typed"]
[tool.poetry.scripts]
iam-ape = "iam_ape.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"