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.
Files changed (37) hide show
  1. {isgri-0.5.0 → isgri-0.5.1}/.gitignore +3 -1
  2. isgri-0.5.1/.python-version +1 -0
  3. {isgri-0.5.0 → isgri-0.5.1}/PKG-INFO +2 -2
  4. {isgri-0.5.0 → isgri-0.5.1}/pyproject.toml +2 -2
  5. isgri-0.5.1/src/isgri/__version__.py +1 -0
  6. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/catalog/builder.py +1 -1
  7. isgri-0.5.0/.python-version +0 -1
  8. isgri-0.5.0/src/isgri/__version__.py +0 -1
  9. {isgri-0.5.0 → isgri-0.5.1}/LICENSE +0 -0
  10. {isgri-0.5.0 → isgri-0.5.1}/README.md +0 -0
  11. {isgri-0.5.0 → isgri-0.5.1}/demo/data/255900280010_isgri_model.fits.gz +0 -0
  12. {isgri-0.5.0 → isgri-0.5.1}/demo/data/isgri_events.fits.gz +0 -0
  13. {isgri-0.5.0 → isgri-0.5.1}/demo/lightcurve_walkthrough.ipynb +0 -0
  14. {isgri-0.5.0 → isgri-0.5.1}/demo/scwquery_walkthrough.ipynb +0 -0
  15. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/__init__.py +0 -0
  16. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/catalog/__init__.py +0 -0
  17. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/catalog/scwquery.py +0 -0
  18. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/catalog/wcs.py +0 -0
  19. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/cli.py +0 -0
  20. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/config.py +0 -0
  21. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/__init__.py +0 -0
  22. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/file_loaders.py +0 -0
  23. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/lightcurve.py +0 -0
  24. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/pif.py +0 -0
  25. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/quality.py +0 -0
  26. {isgri-0.5.0 → isgri-0.5.1}/src/isgri/utils/time_conversion.py +0 -0
  27. {isgri-0.5.0 → isgri-0.5.1}/tests/__init__.py +0 -0
  28. {isgri-0.5.0 → isgri-0.5.1}/tests/catalog/test_scwquery.py +0 -0
  29. {isgri-0.5.0 → isgri-0.5.1}/tests/catalog/test_wcs.py +0 -0
  30. {isgri-0.5.0 → isgri-0.5.1}/tests/test_cli.py +0 -0
  31. {isgri-0.5.0 → isgri-0.5.1}/tests/test_config.py +0 -0
  32. {isgri-0.5.0 → isgri-0.5.1}/tests/utils/__init__.py +0 -0
  33. {isgri-0.5.0 → isgri-0.5.1}/tests/utils/test_file_loaders.py +0 -0
  34. {isgri-0.5.0 → isgri-0.5.1}/tests/utils/test_lightcurve.py +0 -0
  35. {isgri-0.5.0 → isgri-0.5.1}/tests/utils/test_pif.py +0 -0
  36. {isgri-0.5.0 → isgri-0.5.1}/tests/utils/test_quality.py +0 -0
  37. {isgri-0.5.0 → isgri-0.5.1}/tests/utils/test_time_conversion.py +0 -0
@@ -213,4 +213,6 @@ marimo/_lsp/
213
213
  __marimo__/
214
214
 
215
215
  # Streamlit
216
- .streamlit/secrets.toml
216
+ .streamlit/secrets.toml
217
+
218
+ docs/**
@@ -0,0 +1 @@
1
+ 3.9
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: isgri
3
- Version: 0.5.0
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.10
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.0"
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.10"
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
- ["find", "-L", self.archive_path, "-name", "isgri_events.fits.gz"], capture_output=True, text=True
89
+ ["ls", f"{self.archive_path}/*", "|", "isgri_events.fits.gz"], capture_output=True, text=True
90
90
  )
@@ -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