seshat-classifier 0.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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Breanna Crompvoets
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: seshat_classifier
3
+ Version: 0.0.2
4
+ Summary: A package for classifying tabular photometry data from JWST, Spitzer, and 2MASS according to one of YSOs, field stars, brown dwarfs, white dwarfs, or galaxies.
5
+ Author-email: Breanna Crompvoets <bcrompvoets@uvic.ca>
6
+ License-Expression: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: numpy>=1.26.4
13
+ Requires-Dist: seaborn>=0.13.2
14
+ Requires-Dist: scikit-learn>=1.5.1
15
+ Requires-Dist: pandas>=2.2.2
16
+ Requires-Dist: matplotlib>=3.9.2
17
+ Requires-Dist: astropy>=6.1.3
18
+ Requires-Dist: xgboost>=3.0.0
19
+ Requires-Dist: requests
20
+ Dynamic: license-file
21
+
22
+ # README for the Stellar Evolutionary Stage Heuristic Assessment Tool (SESHAT)
23
+
24
+ # Catalog set-up
25
+ Please have your catalog set-up with the columns as:
26
+ Spitzer: ['IRAC1', 'IRAC2', 'IRAC3', 'IRAC4', 'MIPS1', 'MIPS2', 'MIPS3']
27
+ 2MASS: ['J', 'H', 'Ks']
28
+ JWST: in the frame of 'f090w', or 'f322w2'.
29
+
30
+ Please include errors as 'e_' + filter name; e.g. 'e_f090w'
31
+
32
+ All columns must be in Vega mags.
33
+
34
+ If you have labels already known, these should be under the column: 'Label'
35
+ The labels should match the following:
36
+ 0: YSOs
37
+ 1: MS
38
+ 2: SGB
39
+ 3: RGB
40
+ 4: CHeB
41
+ 7: EAGB
42
+ 8: TP-AGB
43
+ 10: Galaxies
44
+ 11: Brown Dwarfs
45
+ 12: White Dwarfs
46
+ Similarly, the classes key should match that phrasing. If you wish to just pick things as any field star
47
+
48
+ Accepts pandas DataFrames or Astropy Tables.
@@ -0,0 +1,27 @@
1
+ # README for the Stellar Evolutionary Stage Heuristic Assessment Tool (SESHAT)
2
+
3
+ # Catalog set-up
4
+ Please have your catalog set-up with the columns as:
5
+ Spitzer: ['IRAC1', 'IRAC2', 'IRAC3', 'IRAC4', 'MIPS1', 'MIPS2', 'MIPS3']
6
+ 2MASS: ['J', 'H', 'Ks']
7
+ JWST: in the frame of 'f090w', or 'f322w2'.
8
+
9
+ Please include errors as 'e_' + filter name; e.g. 'e_f090w'
10
+
11
+ All columns must be in Vega mags.
12
+
13
+ If you have labels already known, these should be under the column: 'Label'
14
+ The labels should match the following:
15
+ 0: YSOs
16
+ 1: MS
17
+ 2: SGB
18
+ 3: RGB
19
+ 4: CHeB
20
+ 7: EAGB
21
+ 8: TP-AGB
22
+ 10: Galaxies
23
+ 11: Brown Dwarfs
24
+ 12: White Dwarfs
25
+ Similarly, the classes key should match that phrasing. If you wish to just pick things as any field star
26
+
27
+ Accepts pandas DataFrames or Astropy Tables.
@@ -0,0 +1,34 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "seshat_classifier"
7
+ version = "0.0.2"
8
+ authors = [
9
+ { name="Breanna Crompvoets", email="bcrompvoets@uvic.ca" },
10
+ ]
11
+ description = "A package for classifying tabular photometry data from JWST, Spitzer, and 2MASS according to one of YSOs, field stars, brown dwarfs, white dwarfs, or galaxies."
12
+ readme = "README.md"
13
+ requires-python = ">=3.9"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+ license = "MIT"
19
+ license-files = ["LICEN[CS]E*"]
20
+ dependencies = ["numpy >= 1.26.4",
21
+ "seaborn >= 0.13.2",
22
+ "scikit-learn >= 1.5.1",
23
+ "pandas >= 2.2.2",
24
+ "matplotlib >=3.9.2",
25
+ "astropy >= 6.1.3",
26
+ "xgboost >= 3.0.0",
27
+ "requests"]
28
+
29
+ [tool.setuptools.package-data]
30
+ "seshat_classifier" = ["data/*.csv"]
31
+
32
+ [tool.setuptools.packages.find]
33
+ where = ["."]
34
+ include = ["seshat_classifier*"]
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: seshat_classifier
3
+ Version: 0.0.2
4
+ Summary: A package for classifying tabular photometry data from JWST, Spitzer, and 2MASS according to one of YSOs, field stars, brown dwarfs, white dwarfs, or galaxies.
5
+ Author-email: Breanna Crompvoets <bcrompvoets@uvic.ca>
6
+ License-Expression: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: numpy>=1.26.4
13
+ Requires-Dist: seaborn>=0.13.2
14
+ Requires-Dist: scikit-learn>=1.5.1
15
+ Requires-Dist: pandas>=2.2.2
16
+ Requires-Dist: matplotlib>=3.9.2
17
+ Requires-Dist: astropy>=6.1.3
18
+ Requires-Dist: xgboost>=3.0.0
19
+ Requires-Dist: requests
20
+ Dynamic: license-file
21
+
22
+ # README for the Stellar Evolutionary Stage Heuristic Assessment Tool (SESHAT)
23
+
24
+ # Catalog set-up
25
+ Please have your catalog set-up with the columns as:
26
+ Spitzer: ['IRAC1', 'IRAC2', 'IRAC3', 'IRAC4', 'MIPS1', 'MIPS2', 'MIPS3']
27
+ 2MASS: ['J', 'H', 'Ks']
28
+ JWST: in the frame of 'f090w', or 'f322w2'.
29
+
30
+ Please include errors as 'e_' + filter name; e.g. 'e_f090w'
31
+
32
+ All columns must be in Vega mags.
33
+
34
+ If you have labels already known, these should be under the column: 'Label'
35
+ The labels should match the following:
36
+ 0: YSOs
37
+ 1: MS
38
+ 2: SGB
39
+ 3: RGB
40
+ 4: CHeB
41
+ 7: EAGB
42
+ 8: TP-AGB
43
+ 10: Galaxies
44
+ 11: Brown Dwarfs
45
+ 12: White Dwarfs
46
+ Similarly, the classes key should match that phrasing. If you wish to just pick things as any field star
47
+
48
+ Accepts pandas DataFrames or Astropy Tables.
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ seshat_classifier.egg-info/PKG-INFO
5
+ seshat_classifier.egg-info/SOURCES.txt
6
+ seshat_classifier.egg-info/dependency_links.txt
7
+ seshat_classifier.egg-info/requires.txt
8
+ seshat_classifier.egg-info/top_level.txt
@@ -0,0 +1,8 @@
1
+ numpy>=1.26.4
2
+ seaborn>=0.13.2
3
+ scikit-learn>=1.5.1
4
+ pandas>=2.2.2
5
+ matplotlib>=3.9.2
6
+ astropy>=6.1.3
7
+ xgboost>=3.0.0
8
+ requests
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+