forked from barronh/WHIPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 861 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
from distutils.core import setup
REQUIRES = ['numpy', 'shapely', 'pyproj', 'tables', 'netCDF4', 'pyhdf']
setup(name='WHIPS',
version='1.2.2',
install_requires = REQUIRES,
description='Scripts for customized regridding of Level-2 data to Level-3 data',
long_description=open('reST.txt').read(),
license = 'MIT License',
author='Jacob Oberman, Keith Maki',
author_email='[email protected]',
packages=['process_sat'],
scripts=['process_sat/whips.py'],
url = 'http://www.sage.wisc.edu/download/WHIPS/WHIPS.html',
download_url='http://github.com/Joberman/process_sat/downloads',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python'
]
)