forked from ECCO-GROUP/ECCOv4-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.02 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.02 KB
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
37
38
39
40
41
import setuptools
from distutils.core import setup
setup(
name = 'ecco_v4_py',
packages = ['ecco_v4_py'], # this must be the same as the name above
version = '1.0.11',
description = 'Estimating the Circulation and Climate of the Ocean (ECCO) Version 4 Python Package',
author = 'Ian Fenty',
author_email = 'ian.fenty@jpl.nasa.gov',
url = 'https://github.com/ECCO-GROUP/ECCOv4-py',
keywords = ['ecco','climate','mitgcm','estimate','circulation','climate'],
install_requires=[
'cython',
'shapely',
'proj',
'six',
'dask[complete]',
'datetime',
'python-dateutil',
'matplotlib',
'numpy',
'pyresample',
'xarray',
'xmitgcm',
'pyyaml',
'pyproj',
'pykdtree',
'cartopy',
'xgcm'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Physics'
]
)