-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·43 lines (40 loc) · 1.52 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
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name="xanespy",
version=read("VERSION"),
description="Tools for analyzing X-ray absorbance spectroscopy data",
long_description=read('README.rst'),
long_description_content_type='text/x-rst',
author="Mark Wolfman",
author_email="[email protected]",
url="https://github.com/canismarko/xanespy",
keywords="XANES X-ray microscopy operando",
install_requires=[
'pytz>=2013b', 'h5py', 'pandas', 'olefile', 'matplotlib>=3.0.0', 'scikit-image>=0.14.0',
'scikit-learn', 'numpy', 'tqdm', 'jinja2', 'pandas',
],
python_requires='>=3.6',
packages=['xanespy',],
package_data={
'xanespy': ['qt_map_window.ui', 'qt_frame_window.ui']
},
entry_points={
'gui_scripts': [
'xanespy-viewer = xanespy.xanes_viewer:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
]
)