From e6661089807f22c21668c2a7ae7a14e620b99557 2015-12-02 03:35:42 From: Miguel Valdez Date: 2015-12-02 03:35:42 Subject: [PATCH] Bug fixed in setup.py: SChain installer did not include package data [*.png, *.jpg, *.conf] --- diff --git a/schainpy/VERSION b/schainpy/VERSION index 0d7b7c6..ead916f 100644 --- a/schainpy/VERSION +++ b/schainpy/VERSION @@ -3,15 +3,15 @@ VERSIONS: 2.1.2: -jroutils_ftp.py: Bug fixed, Any error sending file stopped the Server Thread Server thread opens and closes remote server each time file list is sent --jroplot_spectra.py: Noise path was not being created saving noise data. --jroIO_base.py: startTime can be greater than endTime +-jroplot_spectra.py: Noise path was not being created when noise data is saved. +-jroIO_base.py: startTime can be greater than endTime. Example: SpreadF [18:00 - 07:00] 2.1.3: -jroplot_heispectra.py: SpectraHeisScope was not showing the right channels -jroproc_voltage.py: Bug fixed selecting profiles (self.nProfiles took a wrong value), Bug fixed selecting heights by block (selecting profiles instead heights) -jroproc_voltage.py: New feature added: decoding data by block using FFT. --jroIO_heispectra.py: Bug fixed in FitsReader. Using local Fits object instead schainpy.mode.data.jrodata.Fits object. +-jroIO_heispectra.py: Bug fixed in FitsReader. Using local Fits instance instead schainpy.mode.data.jrodata.Fits. -jroIO_heispectra.py: Channel index list does not exist. 2.1.3.1: diff --git a/setup.py b/setup.py index 21fd8de..c480712 100644 --- a/setup.py +++ b/setup.py @@ -27,10 +27,10 @@ setup(name="schainpy", 'schainpy.gui.viewer.windows'}, py_modules=['schainpy.serializer.DataTranslate', 'schainpy.serializer.JROSerializer'], - package_data={'schainpy': ['*.cfg'], - 'schainpy.gui.figures': ['*.png','*.jpg'] + package_data={'': ['schain.conf.template'], + 'schainpy.gui.figures': ['*.png','*.jpg'], }, - include_package_data=True, + include_package_data=False, scripts =['schainpy/gui/schainGUI'], install_requires=["numpy >= 1.6.0", "scipy >= 0.9.0",