##// END OF EJS Templates
Schain Installer v2.2.0
Miguel Valdez -
r709:8e0c2f4daa6e
parent child
Show More
@@ -1,42 +1,45
1 VERSIONS:
1 VERSIONS:
2
2
3 2.1.2:
3 2.1.2:
4 -jroutils_ftp.py: Bug fixed, Any error sending file stopped the Server Thread
4 -jroutils_ftp.py: Bug fixed, Any error sending file stopped the Server Thread
5 Server thread opens and closes remote server each time file list is sent
5 Server thread opens and closes remote server each time file list is sent
6 -jroplot_spectra.py: Noise path was not being created when noise data is saved.
6 -jroplot_spectra.py: Noise path was not being created when noise data is saved.
7 -jroIO_base.py: startTime can be greater than endTime. Example: SpreadF [18:00 - 07:00]
7 -jroIO_base.py: startTime can be greater than endTime. Example: SpreadF [18:00 - 07:00]
8
8
9 2.1.3:
9 2.1.3:
10 -jroplot_heispectra.py: SpectraHeisScope was not showing the right channels
10 -jroplot_heispectra.py: SpectraHeisScope was not showing the right channels
11 -jroproc_voltage.py: Bug fixed selecting profiles (self.nProfiles took a wrong value),
11 -jroproc_voltage.py: Bug fixed selecting profiles (self.nProfiles took a wrong value),
12 Bug fixed selecting heights by block (selecting profiles instead heights)
12 Bug fixed selecting heights by block (selecting profiles instead heights)
13 -jroproc_voltage.py: New feature added: decoding data by block using FFT.
13 -jroproc_voltage.py: New feature added: decoding data by block using FFT.
14 -jroIO_heispectra.py: Bug fixed in FitsReader. Using local Fits instance instead schainpy.mode.data.jrodata.Fits.
14 -jroIO_heispectra.py: Bug fixed in FitsReader. Using local Fits instance instead schainpy.mode.data.jrodata.Fits.
15 -jroIO_heispectra.py: Channel index list does not exist.
15 -jroIO_heispectra.py: Channel index list does not exist.
16
16
17 2.1.3.1:
17 2.1.3.1:
18 -GUI: every icon were resized
18 -GUI: every icon were resized
19 -jroproc_voltage.py: Print a message when "Read from code" option is selected and the code is not defined inside data file
19 -jroproc_voltage.py: Print a message when "Read from code" option is selected and the code is not defined inside data file
20
20
21 2.1.3.2:
21 2.1.3.2:
22 -GUI: user interaction enhanced
22 -GUI: user interaction enhanced
23 -controller_api.py: Safe access to ControllerThead
23 -controller_api.py: Safe access to ControllerThead
24
24
25 2.1.3.3:
25 2.1.3.3:
26 -Colored Button Icons were added to GUI
26 -Colored Button Icons were added to GUI
27
27
28 2.1.4:
28 2.1.4:
29 -Sending error notifications to signal chain administrator
29 -Sending error notifications to signal chain administrator
30 -Login to email server added
30 -Login to email server added
31
31
32 2.1.4.1:
32 2.1.4.1:
33 -Send notifications when an error different to ValueError is detected
33 -Send notifications when an error different to ValueError is detected
34
34
35 2.1.4.2:
35 2.1.4.2:
36 -A new Plotter Class was added
36 -A new Plotter Class was added
37 -Project.start() does not accept filename as a parameter anymore
37 -Project.start() does not accept filename as a parameter anymore
38
38
39 2.1.5:
39 2.1.5:
40 -serializer module added to Signal Chain
40 -serializer module added to Signal Chain
41 -jroplotter.py added to Signal Chain
41 -jroplotter.py added to Signal Chain
42
42
43 2.2.0:
44 -GUI: use of external plotter
45
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
@@ -1,40 +1,40
1 '''
1 '''
2 Created on Jul 16, 2014
2 Created on Jul 16, 2014
3
3
4 @author: roj-idl71
4 @author: roj-idl71
5 '''
5 '''
6
6
7 from schainpy import __version__
7 from schainpy import __version__
8 from setuptools import setup, Extension
8 from setuptools import setup, Extension
9
9
10 setup(name="schainpy",
10 setup(name="schainpy",
11 version=__version__,
11 version=__version__,
12 description="Python tools to read, write and process Jicamarca data",
12 description="Python tools to read, write and process Jicamarca data",
13 author="Miguel Urco",
13 author="Miguel Urco",
14 author_email="miguel.urco@jro.igp.gob.pe",
14 author_email="miguel.urco@jro.igp.gob.pe",
15 url="http://jro.igp.gob.pe",
15 url="http://jro.igp.gob.pe",
16 packages = {'schainpy',
16 packages = {'schainpy',
17 'schainpy.model',
17 'schainpy.model',
18 'schainpy.model.data',
18 'schainpy.model.data',
19 'schainpy.model.graphics',
19 'schainpy.model.graphics',
20 'schainpy.model.io',
20 'schainpy.model.io',
21 'schainpy.model.proc',
21 'schainpy.model.proc',
22 'schainpy.model.serializer',
22 'schainpy.model.utils',
23 'schainpy.model.utils',
23 'schainpy.gui',
24 'schainpy.gui',
24 'schainpy.gui.figures',
25 'schainpy.gui.figures',
25 'schainpy.gui.viewcontroller',
26 'schainpy.gui.viewcontroller',
26 'schainpy.gui.viewer',
27 'schainpy.gui.viewer',
27 'schainpy.gui.viewer.windows'},
28 'schainpy.gui.viewer.windows'},
28 py_modules=['schainpy.serializer.DataTranslate',
29 py_modules=[''],
29 'schainpy.serializer.JROSerializer'],
30 package_data={'': ['schain.conf.template'],
30 package_data={'': ['schain.conf.template'],
31 'schainpy.gui.figures': ['*.png','*.jpg'],
31 'schainpy.gui.figures': ['*.png','*.jpg'],
32 },
32 },
33 include_package_data=False,
33 include_package_data=False,
34 scripts =['schainpy/gui/schainGUI'],
34 scripts =['schainpy/gui/schainGUI'],
35 install_requires=["numpy >= 1.6.0",
35 install_requires=["numpy >= 1.6.0",
36 "scipy >= 0.9.0",
36 "scipy >= 0.9.0",
37 "h5py >= 2.0.1",
37 "h5py >= 2.0.1",
38 "matplotlib >= 1.0.0"
38 "matplotlib >= 1.0.0"
39 ],
39 ],
40 ) No newline at end of file
40 )
General Comments 0
You need to be logged in to leave comments. Login now