-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 886 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
from distutils.core import setup
from setuptools import find_packages
packages=find_packages()
setup(
name='glider-utilities',
version='1.2',
description='Suite of Slocum Glider Python Utilities',
license='LICENSE',
author='Stuart Pearce',
author_email='[email protected]',
keywords=['oceanography', 'Slocum gliders', 'gliders','seawater'],
packages=packages,
# py_modules=[
# 'glider_utils.argos', 'conv', 'geo', 'seawater2', 'seawater3',
# 'parsers.dbd_parsers', 'parsers.dvl_parsers',
# 'parsers.gliderstate_parser', 'parsers.log_parser',
# 'plots.enduranceMaps', 'plots.plots', 'plots.SingleGliderTracks',
# 'stats.days_of_gldata.'],
package_data={'glider_utils.plots':['ETOPO*.mat']},
requires=['numpy', 'matplotlib', 'pandas', 'gsw',
'mpl_toolkits.basemap'],
)