subhaloscript 1.0.1__tar.gz → 1.0.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.
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/PKG-INFO +2 -3
- subhaloscript-1.0.2/README.md +10 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/meta.yaml +1 -1
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/pyproject.toml +1 -1
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/scripts/nfilters.py +1 -1
- subhaloscript-1.0.1/README.md +0 -11
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/.github/workflows/main.yml +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/.gitignore +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/LICENSE +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/defaults.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/macros.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/scripts/histograms.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/scripts/nodes.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/scripts/spatial.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/tabulatehdf5.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/util.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/wrappers.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_histograms.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_macros.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_nfilters.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_nfilters_legacy.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_nodes.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_spatial.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_tabulatehdf5.py +0 -0
- {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_wrappers.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: subhaloscript
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Utility functions for analyzing subhalo distributions.
|
|
5
5
|
Author-email: Charles Gannon <cgannon@ucmerced.edu>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -15,7 +15,7 @@ Requires-Dist: scipy
|
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
|
|
17
17
|
# SubScript
|
|
18
|
-
Utility functions for analyzing subhalo distributions,
|
|
18
|
+
Utility functions for analyzing subhalo distributions, focusing on the Galacticus (https://github.com/galacticusorg/galacticus) output format. The goal of this package is to facilitate quick statistical analysis of subhalo distributions across multiple trees.
|
|
19
19
|
|
|
20
20
|
## Installation
|
|
21
21
|
|
|
@@ -24,4 +24,3 @@ Utility functions for analyzing subhalo distributions, particularly from the Gal
|
|
|
24
24
|
|
|
25
25
|
### Install via conda
|
|
26
26
|
```conda install cgannonucm::subhaloscript```
|
|
27
|
-
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# SubScript
|
|
2
|
+
Utility functions for analyzing subhalo distributions, focusing on the Galacticus (https://github.com/galacticusorg/galacticus) output format. The goal of this package is to facilitate quick statistical analysis of subhalo distributions across multiple trees.
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
|
|
6
|
+
### Install via pip
|
|
7
|
+
```pip install subhaloscript```
|
|
8
|
+
|
|
9
|
+
### Install via conda
|
|
10
|
+
```conda install cgannonucm::subhaloscript```
|
|
@@ -116,7 +116,7 @@ def allnodes(gout, **kwargs):
|
|
|
116
116
|
return np.ones(gout[next(iter(gout))].shape, dtype=bool)
|
|
117
117
|
|
|
118
118
|
@deprecated("Use allnodes() instead")
|
|
119
|
-
def
|
|
119
|
+
def nfilter_all(*args, **kwargs):
|
|
120
120
|
"""
|
|
121
121
|
Deprecated. Use `allnodes()` instead.
|
|
122
122
|
"""
|
subhaloscript-1.0.1/README.md
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# SubScript
|
|
2
|
-
Utility functions for analyzing subhalo distributions, particularly from the Galacticus (https://github.com/galacticusorg/galacticus) galaxy formation model.
|
|
3
|
-
|
|
4
|
-
## Installation
|
|
5
|
-
|
|
6
|
-
### Install via pip
|
|
7
|
-
```pip install subhaloscript```
|
|
8
|
-
|
|
9
|
-
### Install via conda
|
|
10
|
-
```conda install cgannonucm::subhaloscript```
|
|
11
|
-
|
|
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
|