cnda_dl 1.0.0__tar.gz → 1.0.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.
- {cnda_dl-1.0.0 → cnda_dl-1.0.1}/PKG-INFO +5 -13
- cnda_dl-1.0.1/README.md +9 -0
- {cnda_dl-1.0.0 → cnda_dl-1.0.1}/cnda_dl/cli.py +1 -1
- {cnda_dl-1.0.0 → cnda_dl-1.0.1}/pyproject.toml +1 -1
- cnda_dl-1.0.0/README.md +0 -17
- {cnda_dl-1.0.0 → cnda_dl-1.0.1}/LICENSE +0 -0
- {cnda_dl-1.0.0 → cnda_dl-1.0.1}/cnda_dl/.ruff_cache/.gitignore +0 -0
- {cnda_dl-1.0.0 → cnda_dl-1.0.1}/cnda_dl/.ruff_cache/0.9.9/15962950311086395899 +0 -0
- {cnda_dl-1.0.0 → cnda_dl-1.0.1}/cnda_dl/.ruff_cache/CACHEDIR.TAG +0 -0
- {cnda_dl-1.0.0 → cnda_dl-1.0.1}/cnda_dl/__init__.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cnda_dl
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.1
|
4
4
|
Summary: A command line utility for downloading fMRI data from CNDA
|
5
5
|
Author-Email: Ramone Agard <agardr@wustl.edu>, Joey Scanga <joeyscanga92@gmail.com>
|
6
6
|
Requires-Python: <4.0,>=3.9
|
@@ -10,20 +10,12 @@ Requires-Dist: progressbar2>=4.4.2
|
|
10
10
|
Requires-Dist: pyxnat>=1.6.2
|
11
11
|
Description-Content-Type: text/markdown
|
12
12
|
|
13
|
-
#
|
13
|
+
# Installation
|
14
14
|
|
15
|
-
|
15
|
+
We recommend installing cnda-dl with [pipx](https://github.com/pypa/pipx), which ensures that the cnda-dl binary is installed in an isolated environment. Installation instructions can be found [here](https://github.com/pypa/pipx?tab=readme-ov-file#install-pipx).
|
16
16
|
|
17
|
-
|
18
|
-
which uv
|
19
|
-
```
|
20
|
-
|
21
|
-
If not, this can be installed following instructions [here](https://docs.astral.sh/uv/getting-started/installation/).
|
22
|
-
|
23
|
-
Then run:
|
17
|
+
With `pipx` installed:
|
24
18
|
|
25
19
|
```
|
26
|
-
|
27
|
-
cd cnda-dl
|
28
|
-
uv sync
|
20
|
+
pipx install cnda_dl
|
29
21
|
```
|
cnda_dl-1.0.1/README.md
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
# Installation
|
2
|
+
|
3
|
+
We recommend installing cnda-dl with [pipx](https://github.com/pypa/pipx), which ensures that the cnda-dl binary is installed in an isolated environment. Installation instructions can be found [here](https://github.com/pypa/pipx?tab=readme-ov-file#install-pipx).
|
4
|
+
|
5
|
+
With `pipx` installed:
|
6
|
+
|
7
|
+
```
|
8
|
+
pipx install cnda_dl
|
9
|
+
```
|
@@ -318,7 +318,7 @@ def dat_dcm_to_nifti(session: str,
|
|
318
318
|
def main():
|
319
319
|
parser = argparse.ArgumentParser(
|
320
320
|
prog="cnda-dl",
|
321
|
-
description="
|
321
|
+
description="A command-line utility for downloading fMRI data from CNDA",
|
322
322
|
)
|
323
323
|
parser.add_argument('session_list',
|
324
324
|
nargs="+",
|
cnda_dl-1.0.0/README.md
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# Dev installation
|
2
|
-
|
3
|
-
Ensure `uv` is installed:
|
4
|
-
|
5
|
-
```
|
6
|
-
which uv
|
7
|
-
```
|
8
|
-
|
9
|
-
If not, this can be installed following instructions [here](https://docs.astral.sh/uv/getting-started/installation/).
|
10
|
-
|
11
|
-
Then run:
|
12
|
-
|
13
|
-
```
|
14
|
-
git clone https://github.com/washu-ocean/cnda-dl.git
|
15
|
-
cd cnda-dl
|
16
|
-
uv sync
|
17
|
-
```
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|