-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (40 loc) · 1.88 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 distutils.core import setup
long_description = r"""
A program for calculating the mass of XAFS [X-ray Absorption Fine Structure]
samples. The chemical formula parser understands parentheses and weight
percentage, also in nested form. XAFSmass reports the quantity (weight,
thickness or pressure) together with the expected height of the absorption
edge. The GUI is provided by Qt. The documentation is included.
Dependencies: numpy, pyparsing and matplotlib are required. Qt must be provided
by either PyQt4, PyQt5 or PySide.
"""
setup(
name='XAFSmass',
version='1.6.0',
description='A program for calculating the mass of XAFS samples. '
'For synchrotron users.',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Konstantin Klementiev, Roman Chernikov',
author_email='[email protected], [email protected]',
url='http://xafsmass.readthedocs.io',
platforms='OS Independent',
license='MIT License',
keywords='',
zip_safe=False,
packages=['XAFSmass'],
package_data={'XAFSmass': ['data/*.*', 'help/*.*', 'help/_images/*.*',
'help/_images/math/*.*', 'help/_sources/*.*',
'help/_static/*.*']},
scripts=['XAFSmass/XAFSmassQt.py'],
install_requires=['numpy>=1.8.0', 'matplotlib>=2.0.0', 'distro'],
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization'],
)