dataall-cli 0.3.0a1__tar.gz → 0.4.1__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.
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/PKG-INFO +8 -12
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/pyproject.toml +35 -42
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/LICENSE +0 -0
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/NOTICE +0 -0
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/NOTICE.txt +0 -0
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/README.md +0 -0
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/dataall_cli/__init__.py +0 -0
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/dataall_cli/__main__.py +0 -0
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/dataall_cli/__metadata__.py +0 -0
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/dataall_cli/bind_commands.py +0 -0
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/dataall_cli/cli.py +0 -0
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/dataall_cli/utils/__init__.py +0 -0
- {dataall_cli-0.3.0a1 → dataall_cli-0.4.1}/dataall_cli/utils/config.py +0 -0
|
@@ -1,28 +1,24 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dataall-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: AWS data.all CLI
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Keywords: dataall,aws
|
|
7
7
|
Author: Amazon Web Services
|
|
8
8
|
Requires-Python: >=3.9,<4.0
|
|
9
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
9
|
Classifier: Programming Language :: Python :: 3.9
|
|
12
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
13
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
-
|
|
16
|
-
Requires-Dist:
|
|
17
|
-
Requires-Dist:
|
|
18
|
-
Requires-Dist:
|
|
19
|
-
Requires-Dist:
|
|
20
|
-
Requires-Dist:
|
|
21
|
-
Requires-Dist: dataall-core (>=0.3.0a1,<0.4.0)
|
|
13
|
+
Requires-Dist: PyYAML (>=6.0.1)
|
|
14
|
+
Requires-Dist: atomicfile (>=1.0.1)
|
|
15
|
+
Requires-Dist: boto3 (>=1.28.22)
|
|
16
|
+
Requires-Dist: botocore (>=1.31.22)
|
|
17
|
+
Requires-Dist: click (>=8.1.6)
|
|
18
|
+
Requires-Dist: dataall-core (==0.4.1)
|
|
22
19
|
Requires-Dist: packaging (>=21.1,<24.0)
|
|
23
|
-
Requires-Dist: pytest-mock (>=3.14.0,<4.0.0)
|
|
24
20
|
Requires-Dist: setuptools ; python_version >= "3.12"
|
|
25
|
-
Requires-Dist: typing-extensions (>=4.4.0
|
|
21
|
+
Requires-Dist: typing-extensions (>=4.4.0)
|
|
26
22
|
Description-Content-Type: text/markdown
|
|
27
23
|
|
|
28
24
|
# AWS data.all SDK (dataall-sdk)
|
|
@@ -1,51 +1,45 @@
|
|
|
1
|
-
[
|
|
1
|
+
[project]
|
|
2
2
|
name = "dataall-cli"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.4.1"
|
|
4
4
|
description = "AWS data.all CLI"
|
|
5
|
-
authors = ["Amazon Web Services"]
|
|
6
|
-
license = "Apache License 2.0"
|
|
7
|
-
|
|
5
|
+
authors = [{ name = "Amazon Web Services" }]
|
|
6
|
+
license = { text = "Apache License 2.0" }
|
|
8
7
|
readme = "README.md"
|
|
9
|
-
|
|
10
|
-
include = ["README.md"]
|
|
11
|
-
|
|
12
|
-
exclude = ["*.so", "*.pyc", "*~", "#*", ".git*", ".coverage*", "DS_Store", "__pycache__"]
|
|
13
|
-
|
|
14
|
-
|
|
15
8
|
keywords = ["dataall", "aws"]
|
|
16
|
-
|
|
17
9
|
classifiers = [
|
|
18
10
|
"Programming Language :: Python :: 3.9",
|
|
19
11
|
"Programming Language :: Python :: 3.10",
|
|
20
12
|
"Programming Language :: Python :: 3.11",
|
|
21
13
|
"Programming Language :: Python :: 3.12",
|
|
22
14
|
]
|
|
15
|
+
requires-python = ">=3.9,<4.0"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"boto3>=1.28.22",
|
|
18
|
+
"botocore>=1.31.22",
|
|
19
|
+
"typing-extensions>=4.4.0",
|
|
20
|
+
"packaging>=21.1,<24.0",
|
|
21
|
+
"click>=8.1.6",
|
|
22
|
+
"atomicfile>=1.0.1",
|
|
23
|
+
"PyYAML>=6.0.1",
|
|
24
|
+
"setuptools; python_version >= '3.12'",
|
|
25
|
+
"dataall-core==0.4.1",
|
|
26
|
+
]
|
|
23
27
|
|
|
24
|
-
[
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
# Required
|
|
28
|
-
boto3 = "^1.28.22"
|
|
29
|
-
botocore = "^1.31.22"
|
|
30
|
-
typing-extensions = "^4.4.0"
|
|
31
|
-
packaging = ">=21.1,<24.0"
|
|
32
|
-
click = "^8.1.6"
|
|
33
|
-
atomicfile = "^1.0.1"
|
|
34
|
-
PyYAML = "^6.0.1"
|
|
28
|
+
[project.scripts]
|
|
29
|
+
dataall_cli = "dataall_cli.cli:dataall_cli"
|
|
35
30
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
dataall-core = "^0.3.0a1"
|
|
31
|
+
[tool.poetry]
|
|
32
|
+
include = ["README.md"]
|
|
33
|
+
exclude = ["*.so", "*.pyc", "*~", "#*", ".git*", ".coverage*", "DS_Store", "__pycache__"]
|
|
40
34
|
|
|
41
|
-
[tool.poetry.dev
|
|
35
|
+
[tool.poetry.group.dev.dependencies]
|
|
42
36
|
# Build
|
|
43
37
|
setuptools = "*"
|
|
44
38
|
wheel = "^0.42.0"
|
|
45
39
|
msgpack = "*"
|
|
46
40
|
|
|
47
41
|
# Lint
|
|
48
|
-
boto3-stubs = {version = "^1.34.14", extras = ["athena", "cleanrooms", "chime", "cloudwatch", "dynamodb", "ec2", "emr", "emr-serverless", "glue", "kms", "lakeformation", "logs", "neptune", "opensearch", "opensearchserverless", "quicksight", "rds", "rds-data", "redshift", "redshift-data", "s3", "secretsmanager", "ssm", "sts", "timestream-query", "timestream-write"]}
|
|
42
|
+
boto3-stubs = { version = "^1.34.14", extras = ["athena", "cleanrooms", "chime", "cloudwatch", "dynamodb", "ec2", "emr", "emr-serverless", "glue", "kms", "lakeformation", "logs", "neptune", "opensearch", "opensearchserverless", "quicksight", "rds", "rds-data", "redshift", "redshift-data", "s3", "secretsmanager", "ssm", "sts", "timestream-query", "timestream-write"] }
|
|
49
43
|
doc8 = "^1.0"
|
|
50
44
|
mypy = "^1.8"
|
|
51
45
|
pylint = "^3.0"
|
|
@@ -55,7 +49,7 @@ ruff = "^0.1.11"
|
|
|
55
49
|
moto = "^4.2"
|
|
56
50
|
openpyxl = "^3.0"
|
|
57
51
|
pyparsing = "^3.0.7"
|
|
58
|
-
pytest = "^
|
|
52
|
+
pytest = "^8.4.1"
|
|
59
53
|
pytest-cov = "^4.0"
|
|
60
54
|
pytest-rerunfailures = "^13.0"
|
|
61
55
|
pytest-timeout = "^2.1.0"
|
|
@@ -74,10 +68,11 @@ pydot = "^2.0.0"
|
|
|
74
68
|
myst-parser = "^2.0.0"
|
|
75
69
|
sphinx-click = "^5.1.0"
|
|
76
70
|
sphinx-autobuild = "^2024.4.0"
|
|
71
|
+
pytest-mock = "^3.14.1"
|
|
77
72
|
|
|
78
73
|
|
|
79
74
|
[build-system]
|
|
80
|
-
requires = ["poetry-core>=
|
|
75
|
+
requires = ["poetry-core>=2.0.0"]
|
|
81
76
|
build-backend = "poetry.core.masonry.api"
|
|
82
77
|
|
|
83
78
|
[tool.ruff]
|
|
@@ -109,8 +104,7 @@ fixable = ["ALL"]
|
|
|
109
104
|
[tool.ruff.lint.pydocstyle]
|
|
110
105
|
convention = "numpy"
|
|
111
106
|
|
|
112
|
-
|
|
113
|
-
dataall_cli = "dataall_cli.cli:dataall_cli"
|
|
107
|
+
|
|
114
108
|
|
|
115
109
|
[tool.mypy]
|
|
116
110
|
python_version = "3.9"
|
|
@@ -126,17 +120,16 @@ markers = [
|
|
|
126
120
|
"distributed: tests againsts methods with distributed functionality",
|
|
127
121
|
]
|
|
128
122
|
|
|
129
|
-
[tool.coverage.run]
|
|
130
|
-
branch = true
|
|
131
|
-
omit = [
|
|
132
|
-
"awswrangler/distributed/*",
|
|
133
|
-
"awswrangler/neptune/_utils.py",
|
|
134
|
-
"awswrangler/opensearch/_utils.py",
|
|
135
|
-
"awswrangler/chime.py",
|
|
136
|
-
]
|
|
137
|
-
|
|
138
123
|
[tool.coverage.report]
|
|
139
124
|
show_missing = true
|
|
140
125
|
|
|
141
126
|
[tool.bandit]
|
|
142
127
|
exclude_dirs = ["tests"]
|
|
128
|
+
|
|
129
|
+
[tool.pylint.main]
|
|
130
|
+
jobs = 0
|
|
131
|
+
fail-under = 9
|
|
132
|
+
|
|
133
|
+
[tool.pylint.messages_control]
|
|
134
|
+
disable = ["all"]
|
|
135
|
+
enable = ["R0911", "R0912", "R0913", "R0915"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|