-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.18 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
[project]
dynamic = ["version"]
name = "tft-cli"
[tool.poetry]
name = "tft-cli"
version = "0.0.0"
description = "Testing Farm CLI tool"
authors = ["Miroslav Vadkerti <mvadkert@redhat.com>"]
license = "Apache-2.0"
packages = [
{ include = "tft", from = "src" }
]
[tool.poetry.scripts]
testing-farm = "tft.cli.tool:app"
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
# click 8.1.0 broke typer 0.4.0
# https://github.com/tiangolo/typer/pull/375
click = "^8.0.4"
typer = ">=0.11"
dynaconf = "^3.1.2"
colorama = "^0.4.4"
requests = "^2.33.0"
rich = ">=12"
ruamel-yaml = "<0.20.0"
# can be removed after bumping typer to ">=0.12"
shellingham = ">=1.3.0,<2.0.0"
pendulum = "^3.0.0"
python-dotenv = "^1.2.1"
keyring = "^25.7.0"
cryptography = "*"
[tool.poetry.dev-dependencies]
pyre-check = "^0.9.10"
pytest = "^7.0.0"
isort = "^5.10.1"
black = "^22.1.0"
pre-commit = "^2.17.0"
tox = "^3.24.5"
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"