-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (34 loc) · 918 Bytes
/
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
#
# setup.py - Python setuptools integration
#
import setuptools
setuptools.setup(
name='ioda-converters',
version='1.0.0',
author='JCSDA',
description='IODA Converters',
url='https://github.com/JCSDA-internal/ioda-converters',
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent'],
python_requires='>=3.6',
install_requires=[
'pygrib',
'netCDF4',
'eccodes',
'h5py',
'pyyaml',
'pandas',
'pyhdf',
'path',
'mccabe',
'scipy',
],
)