isgri 0.5.0__tar.gz → 0.5.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.
- {isgri-0.5.0 → isgri-0.5.1}/.gitignore +3 -1
- isgri-0.5.1/.python-version +1 -0
- {isgri-0.5.0 → isgri-0.5.1}/PKG-INFO +2 -2
- {isgri-0.5.0 → isgri-0.5.1}/pyproject.toml +2 -2
- isgri-0.5.1/src/isgri/__version__.py +1 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/catalog/builder.py +1 -1
- isgri-0.5.0/.python-version +0 -1
- isgri-0.5.0/src/isgri/__version__.py +0 -1
- {isgri-0.5.0 → isgri-0.5.1}/LICENSE +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/README.md +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/demo/data/255900280010_isgri_model.fits.gz +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/demo/data/isgri_events.fits.gz +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/demo/lightcurve_walkthrough.ipynb +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/demo/scwquery_walkthrough.ipynb +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/__init__.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/catalog/__init__.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/catalog/scwquery.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/catalog/wcs.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/cli.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/config.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/__init__.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/file_loaders.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/lightcurve.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/pif.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/quality.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/time_conversion.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/__init__.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/catalog/test_scwquery.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/catalog/test_wcs.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/test_cli.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/test_config.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/utils/__init__.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/utils/test_file_loaders.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/utils/test_lightcurve.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/utils/test_pif.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/utils/test_quality.py +0 -0
- {isgri-0.5.0 → isgri-0.5.1}/tests/utils/test_time_conversion.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.9
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: isgri
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Summary: Python package for INTEGRAL IBIS/ISGRI lightcurve analysis
|
|
5
5
|
Author: Dominik Patryk Pacholski
|
|
6
6
|
License: MIT
|
|
7
7
|
License-File: LICENSE
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
9
|
Requires-Dist: astropy
|
|
10
10
|
Requires-Dist: click
|
|
11
11
|
Requires-Dist: numpy
|
|
@@ -4,12 +4,12 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "isgri"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.1"
|
|
8
8
|
authors = [{name = "Dominik Patryk Pacholski"}]
|
|
9
9
|
license = {text = "MIT"}
|
|
10
10
|
description = "Python package for INTEGRAL IBIS/ISGRI lightcurve analysis"
|
|
11
11
|
readme = "README.md"
|
|
12
|
-
requires-python = ">=3.
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
13
|
dependencies = [
|
|
14
14
|
"numpy",
|
|
15
15
|
"astropy",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.5.1"
|
|
@@ -86,5 +86,5 @@ class CatalogBuilder:
|
|
|
86
86
|
def _find_scws(self) -> tuple[np.ndarray[str], np.ndarray[str]]:
|
|
87
87
|
# Find all SCW files in the archive
|
|
88
88
|
scws_files = subprocess.run(
|
|
89
|
-
["
|
|
89
|
+
["ls", f"{self.archive_path}/*", "|", "isgri_events.fits.gz"], capture_output=True, text=True
|
|
90
90
|
)
|
isgri-0.5.0/.python-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
3.10
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.5.0"
|
|
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
|
|
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
|