forked from ECCO-GROUP/ECCOv4-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.39 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup
def README():
with open('README.md') as f:
return f.read()
setup(
name = 'ecco_v4_py',
packages = ['ecco_v4_py'], # this must be the same as the name above
version = '1.5.5',
description = 'Estimating the Circulation and Climate of the Ocean (ECCO) Version 4 Python Package',
author = 'Ian Fenty, Ou Wang, Tim Smith, and others',
author_email = '[email protected], [email protected]',
url = 'https://github.com/ECCO-GROUP/ECCOv4-py',
keywords = ['ecco','climate','mitgcm','estimate','circulation','climate'],
include_package_data=True,
data_files=[('binary_data',['binary_data/basins.data', 'binary_data/basins.meta'])],
python_requires = '>=3.7',
install_requires=[
'numpy',
'future',
'numpy',
'Bottleneck',
'Cartopy',
'cmocean',
'dask[complete]',
'matplotlib',
'netCDF4',
'pyresample',
'python-dateutil',
'xarray',
'xmitgcm',
'xgcm >= 0.5.0'],
tests_require=['pytest','coverage'],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Physics'
],
long_description=README(),
long_description_content_type='text/markdown'
)