subhaloscript 0.0.2__py3-none-any.whl
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-0.0.2.dist-info/METADATA +21 -0
- subhaloscript-0.0.2.dist-info/RECORD +13 -0
- subhaloscript-0.0.2.dist-info/WHEEL +4 -0
- subhaloscript-0.0.2.dist-info/licenses/LICENSE +674 -0
- subscript/defaults.py +31 -0
- subscript/macros.py +198 -0
- subscript/scripts/histograms.py +221 -0
- subscript/scripts/nfilters.py +381 -0
- subscript/scripts/nodes.py +41 -0
- subscript/scripts/spatial.py +64 -0
- subscript/tabulatehdf5.py +232 -0
- subscript/util.py +23 -0
- subscript/wrappers.py +271 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: subhaloscript
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Utility functions for analyzing subhalo distributions.
|
|
5
|
+
Project-URL: Homepage, https://github.com/cgannonucm/SubScript
|
|
6
|
+
Project-URL: Bug Tracker, https://github.com/cgannonucm/SubScript
|
|
7
|
+
Author-email: Charles Gannon <cgannon@ucmerced.edu>
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
10
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Requires-Dist: h5py
|
|
14
|
+
Requires-Dist: numpy
|
|
15
|
+
Requires-Dist: pandas
|
|
16
|
+
Requires-Dist: scikit-learn
|
|
17
|
+
Requires-Dist: scipy
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# SubScript
|
|
21
|
+
Utility functions for analyzing subhalo distributions.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
subscript/defaults.py,sha256=L9aRFMHFqPtHnQliu2Z8mYoFGlBieU5Nq4Pbyj-s1_Y,1149
|
|
2
|
+
subscript/macros.py,sha256=aJ5teqpuVe3nxmOdvCrtBqGyNNpXgedHlXWUz9GYGOg,6725
|
|
3
|
+
subscript/tabulatehdf5.py,sha256=2roiuxKv4zQCNXBMcqc4EcVhn-fBTneprI66VhC19rQ,7299
|
|
4
|
+
subscript/util.py,sha256=ZHZeCOH2jHxpBdFW04eYT5bOY3IAEwvoJxZR4wUw3q0,537
|
|
5
|
+
subscript/wrappers.py,sha256=hRxo3GMOJ7LyWI-97lUS_mbQYT4M6JFtWkxk16OF81s,8873
|
|
6
|
+
subscript/scripts/histograms.py,sha256=40tynC7zYRzDhSgk5t9TGHg1v0FZIDyZ5c_RsyvJrrc,7069
|
|
7
|
+
subscript/scripts/nfilters.py,sha256=xL6eJQ_Z1O6dGGvRO8IeBbDF-YR1H8R9UViMPrNt3Ak,10666
|
|
8
|
+
subscript/scripts/nodes.py,sha256=cXiOFoaZASePr6n1RAk0Lv9CAhDDdHrJNILruoISzwY,987
|
|
9
|
+
subscript/scripts/spatial.py,sha256=IX4ojGvW6jae_mbGv3zMuC461Q9-SJOhR8ss6ejQ7XQ,2340
|
|
10
|
+
subhaloscript-0.0.2.dist-info/METADATA,sha256=ikdKoJuo3OAS1j-AfzTo1V4jWtW6z3bmWvH_xX7tb5w,740
|
|
11
|
+
subhaloscript-0.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
12
|
+
subhaloscript-0.0.2.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
13
|
+
subhaloscript-0.0.2.dist-info/RECORD,,
|