forked from sergiobellido/SpecDAL
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.27 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.27 KB
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
from distutils.core import setup
setup(name='specdal',
version='0.2.5',
description='Package for processing spectroscopy data',
long_description=open('README.rst').read(),
scripts=[
'bin/specdal_pipeline',
'bin/specdal_info',
'bin/specdal_gui',
'bin/specdalqt',
],
entry_points={
'gui_scripts': ['specdal_gui = specdal.gui.viewer:main'],
},
url='https://github.com/OpenAgriTech/SpecDAL/',
author='Young Lee',
author_email='ylee546@wisc.edu',
license='MIT',
packages=['specdal', 'specdal.gui','specdal.gui.pyqt',
'specdal.readers','specdal.containers',
'specdal.operators','specdal.filters'],
install_requires=['numpy', 'pandas', 'matplotlib', 'scipy', 'xarray'],
package_data = {'':['specdal/gui/select.png'],
'specdal.gui.pyqt':['Assets/*.*'],
'rsr':['specdal/rsr/*.nc']},
include_package_data = True,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Programming Language :: Python :: 3',
],
python_requires='>=3'
)