tft-cli 0.0.0__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.
- tft_cli-0.0.0/LICENSE +13 -0
- tft_cli-0.0.0/LICENSE_SPDX +2 -0
- tft_cli-0.0.0/PKG-INFO +23 -0
- tft_cli-0.0.0/pyproject.toml +56 -0
- tft_cli-0.0.0/src/tft/cli/__init__.py +2 -0
- tft_cli-0.0.0/src/tft/cli/command/__init__.py +2 -0
- tft_cli-0.0.0/src/tft/cli/command/listing.py +835 -0
- tft_cli-0.0.0/src/tft/cli/commands.py +2234 -0
- tft_cli-0.0.0/src/tft/cli/config.py +39 -0
- tft_cli-0.0.0/src/tft/cli/tool.py +31 -0
- tft_cli-0.0.0/src/tft/cli/utils.py +377 -0
tft_cli-0.0.0/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright Red Hat, Inc.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
tft_cli-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tft-cli
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Testing Farm CLI tool
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Author: Miroslav Vadkerti
|
|
7
|
+
Author-email: mvadkert@redhat.com
|
|
8
|
+
Requires-Python: >=3.9,<4.0
|
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Requires-Dist: click (>=8.0.4,<9.0.0)
|
|
15
|
+
Requires-Dist: colorama (>=0.4.4,<0.5.0)
|
|
16
|
+
Requires-Dist: dynaconf (>=3.1.2,<4.0.0)
|
|
17
|
+
Requires-Dist: pendulum (>=3.0.0,<4.0.0)
|
|
18
|
+
Requires-Dist: requests (>=2.27.1,<3.0.0)
|
|
19
|
+
Requires-Dist: rich (>=12)
|
|
20
|
+
Requires-Dist: ruamel-yaml (>=0.18.5,<0.19.0)
|
|
21
|
+
Requires-Dist: setuptools
|
|
22
|
+
Requires-Dist: shellingham (>=1.3.0,<2.0.0)
|
|
23
|
+
Requires-Dist: typer (>=0.11)
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
dynamic = ["version"]
|
|
3
|
+
name = "tft-cli"
|
|
4
|
+
|
|
5
|
+
[tool.poetry]
|
|
6
|
+
name = "tft-cli"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Testing Farm CLI tool"
|
|
9
|
+
authors = ["Miroslav Vadkerti <mvadkert@redhat.com>"]
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
|
|
12
|
+
packages = [
|
|
13
|
+
{ include = "tft", from = "src" }
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[tool.poetry.scripts]
|
|
17
|
+
testing-farm = "tft.cli.tool:app"
|
|
18
|
+
|
|
19
|
+
[tool.poetry.dependencies]
|
|
20
|
+
python = "^3.9"
|
|
21
|
+
# click 8.1.0 broke typer 0.4.0
|
|
22
|
+
# https://github.com/tiangolo/typer/pull/375
|
|
23
|
+
click = "^8.0.4"
|
|
24
|
+
typer = ">=0.11"
|
|
25
|
+
dynaconf = "^3.1.2"
|
|
26
|
+
colorama = "^0.4.4"
|
|
27
|
+
requests = "^2.27.1"
|
|
28
|
+
rich = ">=12"
|
|
29
|
+
ruamel-yaml = "^0.18.5"
|
|
30
|
+
setuptools = "*"
|
|
31
|
+
# can be removed after bumping typer to ">=0.12"
|
|
32
|
+
shellingham = ">=1.3.0,<2.0.0"
|
|
33
|
+
pendulum = "^3.0.0"
|
|
34
|
+
|
|
35
|
+
[tool.poetry.dev-dependencies]
|
|
36
|
+
pyre-check = "^0.9.10"
|
|
37
|
+
pytest = "^7.0.0"
|
|
38
|
+
isort = "^5.10.1"
|
|
39
|
+
black = "^22.1.0"
|
|
40
|
+
pre-commit = "^2.17.0"
|
|
41
|
+
tox = "^3.24.5"
|
|
42
|
+
|
|
43
|
+
[tool.black]
|
|
44
|
+
line-length = 120
|
|
45
|
+
skip-string-normalization = true
|
|
46
|
+
|
|
47
|
+
[tool.isort]
|
|
48
|
+
profile = "black"
|
|
49
|
+
multi_line_output = 3
|
|
50
|
+
|
|
51
|
+
[tool.poetry-dynamic-versioning]
|
|
52
|
+
enable = true
|
|
53
|
+
|
|
54
|
+
[build-system]
|
|
55
|
+
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
|
|
56
|
+
build-backend = "poetry_dynamic_versioning.backend"
|