zombie-squirrel 0.5.2__tar.gz → 0.5.4__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.
- {zombie_squirrel-0.5.2/src/zombie_squirrel.egg-info → zombie_squirrel-0.5.4}/PKG-INFO +3 -7
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/README.md +2 -6
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/src/zombie_squirrel/__init__.py +1 -1
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4/src/zombie_squirrel.egg-info}/PKG-INFO +3 -7
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/LICENSE +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/pyproject.toml +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/setup.cfg +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/setup.py +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/src/zombie_squirrel/acorns.py +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/src/zombie_squirrel/squirrels.py +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/src/zombie_squirrel/sync.py +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/src/zombie_squirrel/utils.py +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/src/zombie_squirrel.egg-info/SOURCES.txt +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/src/zombie_squirrel.egg-info/dependency_links.txt +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/src/zombie_squirrel.egg-info/requires.txt +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/src/zombie_squirrel.egg-info/top_level.txt +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/tests/test_acorns.py +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/tests/test_squirrels.py +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/tests/test_sync.py +0 -0
- {zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zombie-squirrel
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
4
4
|
Summary: Generated from aind-library-template
|
|
5
5
|
Author: Allen Institute for Neural Dynamics
|
|
6
6
|
License: MIT
|
|
@@ -30,9 +30,6 @@ Dynamic: license-file
|
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
pip install zombie-squirrel
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
uv sync
|
|
36
33
|
```
|
|
37
34
|
|
|
38
35
|
## Usage
|
|
@@ -40,11 +37,10 @@ uv sync
|
|
|
40
37
|
### Set backend
|
|
41
38
|
|
|
42
39
|
```bash
|
|
43
|
-
export
|
|
44
|
-
export TREE_SPECIES='REDSHIFT'
|
|
40
|
+
export TREE_SPECIES='s3'
|
|
45
41
|
```
|
|
46
42
|
|
|
47
|
-
Options are '
|
|
43
|
+
Options are 's3', 'MEMORY'.
|
|
48
44
|
|
|
49
45
|
### Scurry (fetch) data
|
|
50
46
|
|
|
@@ -13,9 +13,6 @@
|
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
15
|
pip install zombie-squirrel
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
uv sync
|
|
19
16
|
```
|
|
20
17
|
|
|
21
18
|
## Usage
|
|
@@ -23,11 +20,10 @@ uv sync
|
|
|
23
20
|
### Set backend
|
|
24
21
|
|
|
25
22
|
```bash
|
|
26
|
-
export
|
|
27
|
-
export TREE_SPECIES='REDSHIFT'
|
|
23
|
+
export TREE_SPECIES='s3'
|
|
28
24
|
```
|
|
29
25
|
|
|
30
|
-
Options are '
|
|
26
|
+
Options are 's3', 'MEMORY'.
|
|
31
27
|
|
|
32
28
|
### Scurry (fetch) data
|
|
33
29
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Provides functions to fetch and cache project names, subject IDs, and asset
|
|
4
4
|
metadata from the AIND metadata database with support for multiple backends."""
|
|
5
5
|
|
|
6
|
-
__version__ = "0.5.
|
|
6
|
+
__version__ = "0.5.4"
|
|
7
7
|
|
|
8
8
|
from zombie_squirrel.squirrels import ( # noqa: F401
|
|
9
9
|
asset_basics,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zombie-squirrel
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
4
4
|
Summary: Generated from aind-library-template
|
|
5
5
|
Author: Allen Institute for Neural Dynamics
|
|
6
6
|
License: MIT
|
|
@@ -30,9 +30,6 @@ Dynamic: license-file
|
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
pip install zombie-squirrel
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
uv sync
|
|
36
33
|
```
|
|
37
34
|
|
|
38
35
|
## Usage
|
|
@@ -40,11 +37,10 @@ uv sync
|
|
|
40
37
|
### Set backend
|
|
41
38
|
|
|
42
39
|
```bash
|
|
43
|
-
export
|
|
44
|
-
export TREE_SPECIES='REDSHIFT'
|
|
40
|
+
export TREE_SPECIES='s3'
|
|
45
41
|
```
|
|
46
42
|
|
|
47
|
-
Options are '
|
|
43
|
+
Options are 's3', 'MEMORY'.
|
|
48
44
|
|
|
49
45
|
### Scurry (fetch) data
|
|
50
46
|
|
|
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
|
{zombie_squirrel-0.5.2 → zombie_squirrel-0.5.4}/src/zombie_squirrel.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|