-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.42 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
[tool.poetry]
name = "tf-authoritative-scanner"
version = "1.2.0"
description = ""
authors = ["Andrew Erickson <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-watch = "^4.2.0"
pytest-cov = "^5.0.0"
pre-commit = "^3.7.1"
poetry-bumpversion = "^0.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tfas = "tf_authoritative_scanner.scanner:main"
tfast = "tf_authoritative_scanner.wrapper:main"
[tool.ruff]
# default is 88
line-length = 120
[tool.poetry_bumpversion.file."tf_authoritative_scanner/__init__.py"]
[project]
name = "tf-authoritative-scanner"
description = "Find and alert on authoritative resources in Terraform code"
license = { text = "MPL 2.0" }
requires-python = ">=3.9"
authors = [
{ name = "Andrew J. Erickson", email = "[email protected]" },
]
keywords = [
"terraform",
]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MPL 2.0 License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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 = []
# dynamic = ["readme", "version"]