forked from EnSpec/SpecDAL
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (34 loc) · 1.22 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
from distutils.core import setup
setup(name='specdal',
version='0.2.2',
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/EnSpec/SpecDAL/',
author='Young Lee',
author_email='[email protected]',
license='MIT',
packages=['specdal', 'specdal.gui','specdal.gui.pyqt',
'specdal.readers','specdal.containers',
'specdal.operators','specdal.filters'],
install_requires=['numpy', 'pandas', 'matplotlib', 'scipy','pyqt5'],
package_data = {'':['specdal/gui/select.png'],
'specdal.gui.pyqt':['Assets/*.*']},
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'
)