forked from hfern/tf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (55 loc) · 1.4 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
[tool.poetry]
name = "tf"
version = "1.0.2"
description = "Python Terraform Provider framework"
authors = ["Hunter Fernandes <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["opentofu", "terraform", "provider", "python"]
homepage = "https://github.com/hfern/tf"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.11"
msgpack = "^1.1.0"
cryptography = ">43"
grpcio = "^1.67.1"
[tool.poetry.group.dev.dependencies]
grpcio-tools = "^1.67.1"
ruff = "^0.7.2"
coverage = "^7.6.4"
pyre-check = "^0.9.23"
sphinx = "^8.1.3"
sphinx-mdinclude = "^0.6.2"
sphinx-immaterial = "^0.12.4"
myst-parser = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py311"
exclude = ["tf/gen"]
[tool.ruff.lint]
extend-select = ["I"]
[tool.coverage.run]
branch = true
omit = [
"tf/gen/*",
"*/tests/*",
]
[tool.coverage.report]
show_missing = true
include = [
"tf/*",
]