forked from ECCO-GROUP/ECCOv4-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.27 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
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.1.8',
description = 'Estimating the Circulation and Climate of the Ocean (ECCO) Version 4 Python Package',
author = 'Ian Fenty',
author_email = '[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'])],
install_requires=[
'dask[complete]',
'python-dateutil',
'matplotlib',
'numpy',
'pyresample',
'xarray',
'xmitgcm',
'cartopy',
'xgcm',
'future',
'pathlib'],
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'
)