tft-cli 0.0.25__tar.gz → 0.0.28__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tft-cli
3
- Version: 0.0.25
3
+ Version: 0.0.28
4
4
  Summary: Testing Farm CLI tool
5
5
  License: Apache-2.0
6
6
  Author: Miroslav Vadkerti
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.11
14
14
  Requires-Dist: click (>=8.0.4,<9.0.0)
15
15
  Requires-Dist: colorama (>=0.4.4,<0.5.0)
16
16
  Requires-Dist: dynaconf (>=3.1.2,<4.0.0)
17
+ Requires-Dist: pendulum (>=3.0.0,<4.0.0)
17
18
  Requires-Dist: requests (>=2.27.1,<3.0.0)
18
19
  Requires-Dist: rich (>=12)
19
20
  Requires-Dist: ruamel-yaml (>=0.18.5,<0.19.0)
@@ -1,6 +1,10 @@
1
+ [project]
2
+ dynamic = ["version"]
3
+ name = "tft-cli"
4
+
1
5
  [tool.poetry]
2
6
  name = "tft-cli"
3
- version = "0.0.25"
7
+ version = "0.0.28"
4
8
  description = "Testing Farm CLI tool"
5
9
  authors = ["Miroslav Vadkerti <mvadkert@redhat.com>"]
6
10
  license = "Apache-2.0"
@@ -26,6 +30,7 @@ ruamel-yaml = "^0.18.5"
26
30
  setuptools = "*"
27
31
  # can be removed after bumping typer to ">=0.12"
28
32
  shellingham = ">=1.3.0,<2.0.0"
33
+ pendulum = "^3.0.0"
29
34
 
30
35
  [tool.poetry.dev-dependencies]
31
36
  pyre-check = "^0.9.10"
@@ -43,6 +48,9 @@ skip-string-normalization = true
43
48
  profile = "black"
44
49
  multi_line_output = 3
45
50
 
51
+ [tool.poetry-dynamic-versioning]
52
+ enable = false
53
+
46
54
  [build-system]
47
- requires = ["poetry-core>=1.0.0"]
48
- build-backend = "poetry.core.masonry.api"
55
+ requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
56
+ build-backend = "poetry_dynamic_versioning.backend"
@@ -0,0 +1,2 @@
1
+ # Copyright Contributors to the Testing Farm project.
2
+ # SPDX-License-Identifier: Apache-2.0