metahq-cli 1.0.0rc4__tar.gz → 1.0.0rc5__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.
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/PKG-INFO +4 -3
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/pyproject.toml +3 -1
- metahq_cli-1.0.0rc5/src/metahq_cli/__init__.py +1 -0
- metahq_cli-1.0.0rc4/src/metahq_cli/__init__.py +0 -1
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/.gitignore +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/LICENSE +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/README.md +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/commands/__init__.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/commands/delete.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/commands/retrieve.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/commands/search.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/commands/setup.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/commands/supported.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/commands/validate.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/logger.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/main.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/retrieval_builder.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/retriever.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/setup/__init__.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/setup/config.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/setup/downloader.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/util/__init__.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/util/_validate.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/util/checkers.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/util/common_args.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/util/helpers.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/util/messages.py +0 -0
- {metahq_cli-1.0.0rc4 → metahq_cli-1.0.0rc5}/src/metahq_cli/util/supported.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: metahq-cli
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.0rc5
|
|
4
4
|
Summary: The meta-hq CLI.
|
|
5
|
-
Author-email: Parker Hicks <parker.hicks@cuanschutz.edu>, Faisal Alquaddoomi <faisal.alquaddoomi@cuanschutz.edu>
|
|
5
|
+
Author-email: Parker Hicks <parker.hicks@cuanschutz.edu>, Christopher A Mancuso <christopher.a.mancuso@cuanschutz.edu>, Faisal Alquaddoomi <faisal.alquaddoomi@cuanschutz.edu>
|
|
6
6
|
License-File: LICENSE
|
|
7
7
|
Keywords: CLI,Data Curation,Database,Public Biomedical Data
|
|
8
8
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -12,9 +12,10 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
15
16
|
Requires-Python: >=3.11
|
|
16
17
|
Requires-Dist: click>=8.3.0
|
|
17
|
-
Requires-Dist: metahq-core==1.0.
|
|
18
|
+
Requires-Dist: metahq-core==1.0.0
|
|
18
19
|
Requires-Dist: requests>=2.30.0
|
|
19
20
|
Requires-Dist: rich>=13.0.0
|
|
20
21
|
Provides-Extra: dev
|
|
@@ -6,6 +6,7 @@ requires-python = ">=3.11"
|
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
authors = [
|
|
8
8
|
{name = "Parker Hicks", email = "parker.hicks@cuanschutz.edu"},
|
|
9
|
+
{name = "Christopher A Mancuso", email = "christopher.a.mancuso@cuanschutz.edu"},
|
|
9
10
|
{name = "Faisal Alquaddoomi", email = "faisal.alquaddoomi@cuanschutz.edu"},
|
|
10
11
|
]
|
|
11
12
|
keywords = ["CLI", "Database", "Data Curation", "Public Biomedical Data"]
|
|
@@ -17,11 +18,12 @@ classifiers = [
|
|
|
17
18
|
"Programming Language :: Python :: 3.11",
|
|
18
19
|
"Programming Language :: Python :: 3.12",
|
|
19
20
|
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Programming Language :: Python :: 3.14",
|
|
20
22
|
]
|
|
21
23
|
|
|
22
24
|
dependencies = [
|
|
23
25
|
"click>=8.3.0",
|
|
24
|
-
"metahq-core==1.0.
|
|
26
|
+
"metahq-core==1.0.0",
|
|
25
27
|
"rich>=13.0.0",
|
|
26
28
|
"requests>=2.30.0",
|
|
27
29
|
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.0-rc.5"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.0.0-rc.4"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|