forked from awslabs/terraform-iam-policy-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.1 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
[tool.poetry]
name = "tf-policy-validator"
version = "0.0.7"
description = "A command line tool that validates AWS IAM Policies in a Terraform template against AWS IAM best practices"
authors = ["Policy Validator Maintainers <[email protected]>"]
readme = "README.md"
packages = [{include = "iam_check"}]
license = "MIT-0"
keywords = ["amazon", "aws", "aws-samples", "eks", "kubernetes", "upgrade", "iam_check"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT No Attribution License (MIT-0)",
]
include = [
"README.md",
"LICENSE",
]
[tool.poetry.scripts]
tf-policy-validator = "iam_check.iam_check:main"
[tool.poetry.dependencies]
python = "^3.8"
boto3 = "^1.34.110"
pyyaml = "^6.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"