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.
Files changed (25) hide show
  1. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/PKG-INFO +2 -3
  2. subhaloscript-1.0.2/README.md +10 -0
  3. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/meta.yaml +1 -1
  4. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/pyproject.toml +1 -1
  5. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/scripts/nfilters.py +1 -1
  6. subhaloscript-1.0.1/README.md +0 -11
  7. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/.github/workflows/main.yml +0 -0
  8. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/.gitignore +0 -0
  9. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/LICENSE +0 -0
  10. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/defaults.py +0 -0
  11. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/macros.py +0 -0
  12. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/scripts/histograms.py +0 -0
  13. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/scripts/nodes.py +0 -0
  14. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/scripts/spatial.py +0 -0
  15. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/tabulatehdf5.py +0 -0
  16. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/util.py +0 -0
  17. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/subscript/wrappers.py +0 -0
  18. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_histograms.py +0 -0
  19. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_macros.py +0 -0
  20. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_nfilters.py +0 -0
  21. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_nfilters_legacy.py +0 -0
  22. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_nodes.py +0 -0
  23. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_spatial.py +0 -0
  24. {subhaloscript-1.0.1 → subhaloscript-1.0.2}/tests/test_tabulatehdf5.py +0 -0
  25. {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.1
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, particularly from the Galacticus (https://github.com/galacticusorg/galacticus) galaxy formation model.
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```
@@ -1,6 +1,6 @@
1
1
  package:
2
2
  name: subhaloscript
3
- version: "1.0.1"
3
+ version: "1.0.2"
4
4
 
5
5
  source:
6
6
  path: . # Or use `git_url`/`url` if not building from local files
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
5
5
  [project]
6
6
  dependencies = ["numpy","pandas","scipy","h5py", "scikit-learn"]
7
7
  name = "subhaloscript"
8
- version = "1.0.1"
8
+ version = "1.0.2"
9
9
  authors = [
10
10
  { name="Charles Gannon", email="cgannon@ucmerced.edu" },
11
11
  ]
@@ -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 nfiler_all(*args, **kwargs):
119
+ def nfilter_all(*args, **kwargs):
120
120
  """
121
121
  Deprecated. Use `allnodes()` instead.
122
122
  """
@@ -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