-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
88 lines (73 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# See PEP 518 for the spec of this file
# https://www.python.org/dev/peps/pep-0518/
[build-system]
requires = ["setuptools >= 75.2.0", "wheel >= 0.44.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cfn_lint_ax"
version = "1.2.0"
authors = [
{name = "AX Semantics", email = "[email protected]"},
]
description = "Rules for cfn lint."
requires-python = ">=3.9"
keywords = ["cloudformation", "lint", "cfn-lint"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"cfn-lint >= 1.18.1",
]
dynamic = ["readme"]
[project.urls]
Source = "https://github.com/aexeagmbh/cfn-lint-rules"
Tracker = "https://github.com/aexeagmbh/cfn-lint-rules/issues"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
where = ["."]
include = ["cfn_lint_ax", "cfn_lint_ax.*"]
namespaces = true
[tool.black]
# See https://github.com/ambv/black/blob/master/pyproject.toml
line-length = 88
target_version = ["py39", "py310", "py311", "py312", "py313"]
[tool.isort]
balanced_wrapping = true
combine_as_imports = true
default_section = "THIRDPARTY"
include_trailing_comma = true
indent = " "
known_first_party = [
"rules",
]
line_length = 88
multi_line_output = 3
[tool.pylint."messages control"]
disable = [
"attribute-defined-outside-init",
"duplicate-code",
"line-too-long",
"missing-docstring",
]
[tool.winky]
target_branch = "winky"
[[tool.winky.uv]]
file = "./requirements/base.in"
hashes = true
python = "3.9"
[[tool.winky.uv]]
file = "./requirements/dev.in"
hashes = true
python = "3.9"