lightstack 0.1.0__tar.gz → 0.1.1__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.
- lightstack-0.1.1/LICENSE +21 -0
- lightstack-0.1.1/PKG-INFO +62 -0
- lightstack-0.1.1/README.md +25 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/pyproject.toml +2 -1
- lightstack-0.1.1/src/lightstack.egg-info/PKG-INFO +62 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/src/lightstack.egg-info/SOURCES.txt +1 -0
- lightstack-0.1.0/PKG-INFO +0 -12
- lightstack-0.1.0/README.md +0 -18
- lightstack-0.1.0/src/lightstack.egg-info/PKG-INFO +0 -12
- {lightstack-0.1.0 → lightstack-0.1.1}/setup.cfg +0 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/src/lightstack/__init__.py +0 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/src/lightstack/crop.py +0 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/src/lightstack/datacube.py +0 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/src/lightstack/plot.py +0 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/src/lightstack/psf.py +0 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/src/lightstack/utils.py +0 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/src/lightstack.egg-info/dependency_links.txt +0 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/src/lightstack.egg-info/requires.txt +0 -0
- {lightstack-0.1.0 → lightstack-0.1.1}/src/lightstack.egg-info/top_level.txt +0 -0
lightstack-0.1.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Andressa Wille, Thallis Pessi
|
|
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,62 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: lightstack
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Tools for building and processing multi-filter astrophysical datacubes
|
|
5
|
+
Author: Andressa Wille, Thallis Pessi
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 Andressa Wille, Thallis Pessi
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Requires-Dist: numpy
|
|
31
|
+
Requires-Dist: astropy
|
|
32
|
+
Requires-Dist: matplotlib
|
|
33
|
+
Requires-Dist: reproject
|
|
34
|
+
Requires-Dist: regions
|
|
35
|
+
Requires-Dist: scipy
|
|
36
|
+
Requires-Dist: photutils
|
|
37
|
+
|
|
38
|
+
<img src="https://raw.githubusercontent.com/AndressaWille/lightstack/master/images/logo.png" width="120">
|
|
39
|
+
|
|
40
|
+
# Lightstack
|
|
41
|
+
|
|
42
|
+
Tools for building and processing multi-filter astrophysical datacubes.
|
|
43
|
+
|
|
44
|
+
## Features
|
|
45
|
+
|
|
46
|
+
- Cropping FITS images
|
|
47
|
+
- Building photometric datacubes
|
|
48
|
+
- PSF matching
|
|
49
|
+
|
|
50
|
+
(Currently supports JWST and HST)
|
|
51
|
+
|
|
52
|
+
## Installation
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
pip install lightstack
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Documentation
|
|
59
|
+
|
|
60
|
+
https://lightstack.readthedocs.io/en/latest/
|
|
61
|
+
|
|
62
|
+
See the tutorial notebook!
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<img src="https://raw.githubusercontent.com/AndressaWille/lightstack/master/images/logo.png" width="120">
|
|
2
|
+
|
|
3
|
+
# Lightstack
|
|
4
|
+
|
|
5
|
+
Tools for building and processing multi-filter astrophysical datacubes.
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
- Cropping FITS images
|
|
10
|
+
- Building photometric datacubes
|
|
11
|
+
- PSF matching
|
|
12
|
+
|
|
13
|
+
(Currently supports JWST and HST)
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install lightstack
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Documentation
|
|
22
|
+
|
|
23
|
+
https://lightstack.readthedocs.io/en/latest/
|
|
24
|
+
|
|
25
|
+
See the tutorial notebook!
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "lightstack"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "Tools for building and processing multi-filter astrophysical datacubes"
|
|
5
|
+
readme = "README.md"
|
|
5
6
|
authors = [{name = "Andressa Wille"}, {name="Thallis Pessi"}]
|
|
6
7
|
dependencies = [
|
|
7
8
|
"numpy",
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: lightstack
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Tools for building and processing multi-filter astrophysical datacubes
|
|
5
|
+
Author: Andressa Wille, Thallis Pessi
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 Andressa Wille, Thallis Pessi
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Requires-Dist: numpy
|
|
31
|
+
Requires-Dist: astropy
|
|
32
|
+
Requires-Dist: matplotlib
|
|
33
|
+
Requires-Dist: reproject
|
|
34
|
+
Requires-Dist: regions
|
|
35
|
+
Requires-Dist: scipy
|
|
36
|
+
Requires-Dist: photutils
|
|
37
|
+
|
|
38
|
+
<img src="https://raw.githubusercontent.com/AndressaWille/lightstack/master/images/logo.png" width="120">
|
|
39
|
+
|
|
40
|
+
# Lightstack
|
|
41
|
+
|
|
42
|
+
Tools for building and processing multi-filter astrophysical datacubes.
|
|
43
|
+
|
|
44
|
+
## Features
|
|
45
|
+
|
|
46
|
+
- Cropping FITS images
|
|
47
|
+
- Building photometric datacubes
|
|
48
|
+
- PSF matching
|
|
49
|
+
|
|
50
|
+
(Currently supports JWST and HST)
|
|
51
|
+
|
|
52
|
+
## Installation
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
pip install lightstack
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Documentation
|
|
59
|
+
|
|
60
|
+
https://lightstack.readthedocs.io/en/latest/
|
|
61
|
+
|
|
62
|
+
See the tutorial notebook!
|
lightstack-0.1.0/PKG-INFO
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: lightstack
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary: Tools for building and processing multi-filter astrophysical datacubes
|
|
5
|
-
Author: Andressa Wille, Thallis Pessi
|
|
6
|
-
Requires-Dist: numpy
|
|
7
|
-
Requires-Dist: astropy
|
|
8
|
-
Requires-Dist: matplotlib
|
|
9
|
-
Requires-Dist: reproject
|
|
10
|
-
Requires-Dist: regions
|
|
11
|
-
Requires-Dist: scipy
|
|
12
|
-
Requires-Dist: photutils
|
lightstack-0.1.0/README.md
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
<img src="images/logo.png" width="120">
|
|
2
|
-
|
|
3
|
-
# Lightstack
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
This is a code with functions for:
|
|
7
|
-
- cropping FITS images
|
|
8
|
-
- building photometric datacubes
|
|
9
|
-
- PSF matching
|
|
10
|
-
|
|
11
|
-
(only JWST and HST for now)
|
|
12
|
-
|
|
13
|
-
pip install git+https://github.com/AndressaWille/lightstack.git
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
Documentation: https://lightstack.readthedocs.io/en/latest/
|
|
17
|
-
|
|
18
|
-
See the tutorial notebook!
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: lightstack
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary: Tools for building and processing multi-filter astrophysical datacubes
|
|
5
|
-
Author: Andressa Wille, Thallis Pessi
|
|
6
|
-
Requires-Dist: numpy
|
|
7
|
-
Requires-Dist: astropy
|
|
8
|
-
Requires-Dist: matplotlib
|
|
9
|
-
Requires-Dist: reproject
|
|
10
|
-
Requires-Dist: regions
|
|
11
|
-
Requires-Dist: scipy
|
|
12
|
-
Requires-Dist: photutils
|
|
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
|