metahq-core 0.1.1__tar.gz → 0.1.2__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_core-0.1.1 → metahq_core-0.1.2}/PKG-INFO +18 -1
- metahq_core-0.1.2/README.md +15 -0
- metahq_core-0.1.2/src/metahq_core/__init__.py +1 -0
- metahq_core-0.1.1/src/metahq_core/README.md +0 -0
- metahq_core-0.1.1/src/metahq_core/__init__.py +0 -1
- {metahq_core-0.1.1 → metahq_core-0.1.2}/.gitignore +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/pyproject.toml +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2/src/metahq_core}/README.md +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/curations/_multiprocess_propagator.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/curations/annotation_converter.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/curations/annotations.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/curations/base.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/curations/index.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/curations/labels.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/curations/propagator.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/export/annotations.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/export/base.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/export/labels.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/logger.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/ontology/__init__.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/ontology/base.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/ontology/graph.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/ontology/loader.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/query.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/search.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/util/__init__.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/util/alltypes.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/util/checkers.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/util/exceptions.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/util/helpers.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/util/io.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/util/progress.py +0 -0
- {metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/util/supported.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: metahq-core
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Core API for the meta-hq CLI.
|
|
5
5
|
Author-email: Parker Hicks <parker.hicks@cuanschutz.edu>, Faisal Alquaddoomi <faisal.alquaddoomi@cuanschutz.edu>
|
|
6
6
|
Keywords: CLI,Data Curation,Database,Public Biomedical Data
|
|
@@ -32,3 +32,20 @@ Provides-Extra: test
|
|
|
32
32
|
Requires-Dist: pytest-benchmark; extra == 'test'
|
|
33
33
|
Requires-Dist: pytest-cov; extra == 'test'
|
|
34
34
|
Requires-Dist: pytest>=8.0; extra == 'test'
|
|
35
|
+
Description-Content-Type: text/markdown
|
|
36
|
+
|
|
37
|
+
# metahq-core
|
|
38
|
+
|
|
39
|
+

|
|
40
|
+

|
|
41
|
+

|
|
42
|
+

|
|
43
|
+
|
|
44
|
+
Backend package for `metahq-cli` also available on PyPI. Currently this package
|
|
45
|
+
is solely intended to be used through the MetaHQ CLI.
|
|
46
|
+
|
|
47
|
+
## Install
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
pip install metahq-core
|
|
51
|
+
```
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# metahq-core
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+

|
|
5
|
+

|
|
6
|
+

|
|
7
|
+
|
|
8
|
+
Backend package for `metahq-cli` also available on PyPI. Currently this package
|
|
9
|
+
is solely intended to be used through the MetaHQ CLI.
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install metahq-core
|
|
15
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.2"
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{metahq_core-0.1.1 → metahq_core-0.1.2}/src/metahq_core/curations/_multiprocess_propagator.py
RENAMED
|
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
|
|
File without changes
|