-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
43 lines (41 loc) · 2.33 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
setup(
name='EasyLEED',
packages=['easyleed'],
install_requires=['numpy', 'matplotlib', 'scipy', 'pillow', 'pathlib', 'pandas'],
extras_require={'skimage': ["scikit-image"], 'fits' : ["pyfits"]},
# scripts=['easyleed.pyw'],
entry_points={'gui_scripts' : ['easyleed = easyleed.__main__:main']},
version='2.5.2',
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.
For more info please see https://andim.github.io/easyleed/ or contact the authors via Email ([email protected]) or Twitter (https://twitter.com/andimscience)
""",
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.5.2.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',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
],
)