-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (87 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
93 lines (87 loc) · 2.13 KB
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
89
90
91
92
93
[project]
name = "claranet-tfwrapper"
version = "14.0.9.dev1"
description = "Claranet's `tfwrapper` is a wrapper for [Terraform](https://www.terraform.io/) implemented in python which aims to simplify Terraform usage and enforce best practices"
authors = []
requires-python = ">=3.9,<4.0"
readme = "README.md"
license = { text = "Mozilla Public License Version 2.0" }
keywords = ["terraform", "wrapper"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dependencies = [
"argcomplete<4.0",
"boto3>=1.17.94,<2.0.0",
"cachecontrol[filecache]>=0.14.0,<0.15.0",
"colorlog>=5.0.1,<7.0.0",
"jinja2>=3.0.1,<4.0.0",
"lockfile>=0.12.2,<0.13.0",
"natsort>=7.1.1,<9.0.0",
"packaging>=25,<26",
"pyyaml>=6.0.1,<7.0.0",
"requests>=2.25.1,<3.0.0",
"schema>=0.7.4,<0.8.0",
"semver>=3.0.1,<4.0.0",
"termcolor>=3.1,<3.2",
]
[project.urls]
homepage = "https://github.com/claranet/tfwrapper"
[project.scripts]
tfwrapper = "claranet_tfwrapper:main"
[dependency-groups]
test = [
"coverage",
"md-toc",
"mock",
"pook>=1.0.2",
"pre-commit",
"pytest",
"pytest-mock",
"requests-mock",
"ruff",
"toml",
"tox>=4",
]
[tool.uv]
default-groups = ["test"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
exclude = [
".git",
".tox",
".venv",
".virtualenv",
"__pycache__",
"venv",
"build",
".eggs",
"setup.py",
]
line-length = 130
lint.ignore = []
lint.per-file-ignores."tests/*.py" = [
"D100",
"D101",
"D102",
"D103",
"D104",
"E501",
]
lint.select = ["D", "E", "F", "W"]
target-version = "py39"