-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (43 loc) · 1.12 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
[tool.poetry]
name = "iam-actions"
version = "1.2.0"
description = "JSON of AWS policy components"
authors = ["Constable <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/constableapp/iam_actions"
packages = [{include = "iam_actions"}]
include = [
"iam_actions/actions.json",
"iam_actions/policies.json",
"iam_actions/resourcetypes.json",
"iam_actions/services.json"
]
[project.urls]
Homepage = "https://constableapp.com/"
Repository = "https://github.com/constableapp/iam_actions"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
[tool.poetry.group.dev.dependencies]
slack-sdk = "^3.19.5"
beautifulsoup4 = "^4.11.1"
boto3 = "^1.26.46"
loguru = "^0.6.0"
black = "^22.12.0"
flakeheaven = "^3.2.1"
[tool.poetry.group.dev]
optional = true
[tool.black]
line-length = 180
[tool.flakeheaven]
format = "grouped"
max_line_length = 180
exclude = ["*.md", "dist"]
[tool.flakeheaven.plugins]
pyflakes = ["+*"]
pycodestyle = ["-*"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.scripts]
iam_actions_generate = "iam_actions.generate:run"