-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (30 loc) · 867 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
DESCRIPTION = "STJ_PV: SubTropical Jet Finding via PV Gradient Method"
LONG_DESCRIPTION = """STJ_PV Provides a framework for testing metrics of the subtopical
jet against one another."""
AUTHOR = 'Penelope Maher, Michael Kelleher'
setup(
name='STJ_PV',
version='1.0.0',
author=AUTHOR,
author_email='[email protected], [email protected]',
packages=['STJ_PV', ],
license='BSD',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=[
"basemap>=1.1.0",
"dask>=2.0.0",
"matplotlib>=2.1.0",
"netCDF4>=1.2.4",
"numpy>=1.11.3",
"pandas>=0.20.0",
"psutil>=5.0.1",
"PyYAML>=3.12",
"scipy>=0.19.0",
"seaborn>=0.9.0",
"xarray>=0.9.0",
],
)