forked from swartn/cmipdata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 762 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 762 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='cmipdata',
version='0.7',
author='Neil C. Swart',
author_email='Neil.Swart@canada.ca',
packages=['cmipdata'],
scripts=[],
url='https://github.com/swartn/cmipdata',
download_url='https://github.com/swartn/cmipdata/archive/v0.7.zip',
keywords = ['climate', 'data', 'CMIP5', 'CMIP6', 'NetCDF', 'analysis', 'processing'],
license='LICENSE.txt',
description='Processing tools for large ensembles of CMIP type netcdf data',
long_description=open('README.rst').read(),
install_requires=[
'cdo >=1.2.5',
'netCDF4 >=1.1.6',
'numpy >=1.2.1',
'matplotlib >=1.4.3',
],
)