Skip to content

Commit

Permalink
version bumped
Browse files Browse the repository at this point in the history
  • Loading branch information
andim committed Jun 16, 2017
1 parent f507c08 commit f28ff2b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
7 changes: 7 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
Changelog
==========

Version 2.3
-----------

- GUI bug fixes
- added header to intensity save file

Version 2.2
-----------

- Python 3 support
- stand-alone script now called with easyleed instead of easyleed.pyw

Version 2.1
-----------
Expand Down
1 change: 1 addition & 0 deletions doc/source/_templates/indexsidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<h3>Timeline</h3>

<ul style="list-style-type:disc">
<li>June 2017: EasyLEED 2.3 released. Python 3 bug fixes.</li>
<li>March 2017: EasyLEED 2.2 released. Python 3 support.</li>
<li>July 2015: EasyLEED 2.1 released. Easier installation via setuptools.</li>
<li>October 2014: EasyLEED 2.0 released. Many improvements and bug fixes (see <a href="https://github.com/andim/easyleed/blob/master/changelog">changelog</a>).</li>
Expand Down
2 changes: 1 addition & 1 deletion source/easyleed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""

__version__ = "2.2"
__version__ = "2.3"
__author__ = "Andreas Mayer, Hanna Salopaasi, Nicola Ferralis"

# import packages
Expand Down
8 changes: 6 additions & 2 deletions source/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
requires=['numpy', 'matplotlib', 'scipy', 'pillow', 'pyqt4'],
# scripts=['easyleed.pyw'],
entry_points={'gui_scripts' : ['easyleed = easyleed.__main__:main']},
version='2.2',
version='2.3',
description='Automated extraction of intensity-energy spectra from low-energy electron diffraction patterns',
long_description= """
EasyLEED facilitates data analysis of images obtained by low-energy electron diffraction, a common technique in surface science. It aims to automate the process of extracting intensity-energy spectra from a series of diffraction patterns acquired at different beam energies. At its core a tracking algorithm exploiting the specifics of the underlying physics (see `paper <http://dx.doi.org/10.1016/j.cpc.2012.02.019>`_) allows to link the position of the diffraction maxima between subsequent images.
Expand All @@ -16,15 +16,19 @@
author='Andreas Mayer, Hanna Salopaasi, Nicola Ferralis',
author_email='[email protected]',
url='https://andim.github.io/easyleed/',
download_url='https://github.com/andim/easyleed/archive/2.2.tar.gz',
download_url='https://github.com/andim/easyleed/archive/2.3.tar.gz',
keywords=['LEED', 'surface science', 'image analysis', 'I(E) spectra', 'spot tracking'],
license='GPLv2',
platforms='any',
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
Expand Down

0 comments on commit f28ff2b

Please sign in to comment.