-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 896 Bytes
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
[project]
name = "aws-cloudformation-utils"
description = "Collections of utility functions for Troposphere/CloudFormation."
version = "0.1.0"
requires-python = ">=3.10"
authors = [{name = "VRT DPC", email = "dpc@vrt.be"}]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.10',
]
keywords = ['cloudformation', 'aws']
dependencies = [
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["cfnutils"]
[tool.ruff]
line-length = 140
indent-width = 4
[tool.ruff.lint]
extend-select = [
"E",
"W",
"A",
"COM",
"TID",
"B",
"SIM",
"UP",
]
[tool.ruff.lint.extend-per-file-ignores]
"*/__init__.py" = ["D104"]
[[tool.uv.index]]
name = "nexus"
url = "https://nexus.core.a51.be/repository/pypi/simple/"
publish-url = "https://nexus.core.a51.be/repository/vrt-pypi/"
default = true