-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (43 loc) · 999 Bytes
/
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=67.0", "setuptools_scm[toml]>=7.1"]
[project]
authors = [{"name" = "Robert Hafner"}]
dependencies = []
description = "A wrapper library around OpenTofu (and Terraform)"
dynamic = ["version"]
license = {"file" = "LICENSE"}
name = "tofupy"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">= 3.10"
[project.optional-dependencies]
dev = [
"build",
"dapperdata",
"glom",
"mypy",
"pytest",
"pytest-cov",
"pytest-pretty",
"ruamel.yaml",
"ruff",
"toml-sort"
]
[tool.coverage.run]
omit = [
"./tofupy/_version.py",
"./tofupy/__init__.py",
"./examples/*"
]
[tool.ruff]
exclude = [".venv", "./tofupy/_version.py"]
line-length = 88
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
[tool.setuptools.package-data]
tofupy = ["py.typed"]
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]
fallback_version = "0.0.0-dev"
write_to = "tofupy/_version.py"