generated from linz/template-python-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.07 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.black]
line-length = 127
[tool.isort]
case_sensitive = true
line_length = 127
profile = "black"
[tool.mypy]
show_error_codes = true
strict = true
[tool.poetry]
authors = [
"Amrou Emad <[email protected]>",
"Ben Cheng <[email protected]>",
"Bill Nelson <[email protected]>",
"Blayne Chard <[email protected]>",
"Daniel Silk <[email protected]>",
"Jim Gan <[email protected]>",
"Victor Engmark <[email protected]>"
]
description = "AWS Python CDK Template for deploying OIDC provider"
license = "MIT"
name = "oidc-provider"
version = "0.1.0"
[tool.poetry.dependencies]
aws-cdk-lib = "*"
python = "^3.10"
[tool.poetry.dev-dependencies]
black = "*"
gitlint = "*"
isort = "*"
language-formatters-pre-commit-hooks = "*"
mypy = "*"
pre-commit = "*"
pylint = "*"
[tool.pylint.FORMAT]
max-line-length = 127
[tool.pylint.MASTER]
disable = [
"bad-continuation",
"duplicate-code",
"invalid-name",
"missing-docstring",
"too-few-public-methods"
]