plotastrodata 1.0.5__tar.gz → 1.0.5.post1__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 (21) hide show
  1. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/PKG-INFO +2 -2
  2. plotastrodata-1.0.5.post1/plotastrodata/__init__.py +4 -0
  3. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata.egg-info/PKG-INFO +2 -2
  4. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/setup.cfg +1 -1
  5. plotastrodata-1.0.5/plotastrodata/__init__.py +0 -5
  6. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/LICENSE +0 -0
  7. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/README.md +0 -0
  8. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata/analysis_utils.py +0 -0
  9. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata/const_utils.py +0 -0
  10. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata/fft_utils.py +0 -0
  11. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata/fits_utils.py +0 -0
  12. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata/fitting_utils.py +0 -0
  13. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata/los_utils.py +0 -0
  14. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata/other_utils.py +0 -0
  15. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata/plot_utils.py +0 -0
  16. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata.egg-info/SOURCES.txt +0 -0
  17. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata.egg-info/dependency_links.txt +0 -0
  18. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata.egg-info/not-zip-safe +0 -0
  19. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata.egg-info/requires.txt +0 -0
  20. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/plotastrodata.egg-info/top_level.txt +0 -0
  21. {plotastrodata-1.0.5 → plotastrodata-1.0.5.post1}/setup.py +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plotastrodata
3
- Version: 1.0.5
4
- Summary: plotastrodata can be used mainly to make figures from FITS files, as well as other analyses in astronomy.
3
+ Version: 1.0.5.post1
4
+ Summary: plotastrodata is a tool for astronomers to create figures from FITS files and perform various data analyses with ease.
5
5
  Home-page: https://github.com/yusukeaso-astron/plotastrodata
6
6
  Download-URL: https://github.com/yusukeaso-astron/plotastrodata
7
7
  Author: yusukeaso-astron
@@ -0,0 +1,4 @@
1
+ import warnings
2
+
3
+ warnings.simplefilter('ignore', UserWarning)
4
+ __version__ = '1.0.5-1'
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plotastrodata
3
- Version: 1.0.5
4
- Summary: plotastrodata can be used mainly to make figures from FITS files, as well as other analyses in astronomy.
3
+ Version: 1.0.5.post1
4
+ Summary: plotastrodata is a tool for astronomers to create figures from FITS files and perform various data analyses with ease.
5
5
  Home-page: https://github.com/yusukeaso-astron/plotastrodata
6
6
  Download-URL: https://github.com/yusukeaso-astron/plotastrodata
7
7
  Author: yusukeaso-astron
@@ -2,7 +2,7 @@
2
2
  name = plotastrodata
3
3
  author = yusukeaso-astron
4
4
  version = attr: plotastrodata.__version__
5
- description = plotastrodata can be used mainly to make figures from FITS files, as well as other analyses in astronomy.
5
+ description = plotastrodata is a tool for astronomers to create figures from FITS files and perform various data analyses with ease.
6
6
  long_description = file: README.md
7
7
  keywords = astronomy, FITS, plot
8
8
  license = GNU General Public License Version 3
@@ -1,5 +0,0 @@
1
- import warnings
2
-
3
- warnings.simplefilter('ignore', UserWarning)
4
- __version_info__ = (1, 0, 5)
5
- __version__ = '.'.join(map(str, __version_info__))