plotastrodata 1.0.3__tar.gz → 1.0.4__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 (20) hide show
  1. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/PKG-INFO +1 -2
  2. plotastrodata-1.0.4/plotastrodata/__init__.py +5 -0
  3. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata.egg-info/PKG-INFO +1 -2
  4. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata.egg-info/requires.txt +0 -1
  5. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/setup.cfg +0 -1
  6. plotastrodata-1.0.3/plotastrodata/__init__.py +0 -5
  7. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/LICENSE +0 -0
  8. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/README.md +0 -0
  9. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata/analysis_utils.py +0 -0
  10. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata/fft_utils.py +0 -0
  11. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata/fits_utils.py +0 -0
  12. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata/fitting_utils.py +0 -0
  13. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata/los_utils.py +0 -0
  14. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata/other_utils.py +0 -0
  15. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata/plot_utils.py +0 -0
  16. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata.egg-info/SOURCES.txt +0 -0
  17. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata.egg-info/dependency_links.txt +0 -0
  18. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata.egg-info/not-zip-safe +0 -0
  19. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/plotastrodata.egg-info/top_level.txt +0 -0
  20. {plotastrodata-1.0.3 → plotastrodata-1.0.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plotastrodata
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: plotastrodata can be used mainly to make figures from FITS files, as well as other analyses in astronomy.
5
5
  Home-page: https://github.com/yusukeaso-astron/plotastrodata
6
6
  Download-URL: https://github.com/yusukeaso-astron/plotastrodata
@@ -13,7 +13,6 @@ License-File: LICENSE
13
13
  Requires-Dist: astropy
14
14
  Requires-Dist: corner
15
15
  Requires-Dist: dynesty
16
- Requires-Dist: ffmpeg
17
16
  Requires-Dist: matplotlib
18
17
  Requires-Dist: multiprocess
19
18
  Requires-Dist: numpy
@@ -0,0 +1,5 @@
1
+ import warnings
2
+
3
+ warnings.simplefilter('ignore', UserWarning)
4
+ __version_info__ = (1, 0, 4)
5
+ __version__ = '.'.join(map(str, __version_info__))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plotastrodata
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: plotastrodata can be used mainly to make figures from FITS files, as well as other analyses in astronomy.
5
5
  Home-page: https://github.com/yusukeaso-astron/plotastrodata
6
6
  Download-URL: https://github.com/yusukeaso-astron/plotastrodata
@@ -13,7 +13,6 @@ License-File: LICENSE
13
13
  Requires-Dist: astropy
14
14
  Requires-Dist: corner
15
15
  Requires-Dist: dynesty
16
- Requires-Dist: ffmpeg
17
16
  Requires-Dist: matplotlib
18
17
  Requires-Dist: multiprocess
19
18
  Requires-Dist: numpy
@@ -1,7 +1,6 @@
1
1
  astropy
2
2
  corner
3
3
  dynesty
4
- ffmpeg
5
4
  matplotlib
6
5
  multiprocess
7
6
  numpy
@@ -19,7 +19,6 @@ install_requires =
19
19
  astropy
20
20
  corner
21
21
  dynesty
22
- ffmpeg
23
22
  matplotlib
24
23
  multiprocess
25
24
  numpy
@@ -1,5 +0,0 @@
1
- import warnings
2
-
3
- warnings.simplefilter('ignore', UserWarning)
4
- __version_info__ = (1, 0, 3)
5
- __version__ = '.'.join(map(str, __version_info__))
File without changes
File without changes
File without changes