forked from noaa-oar-arl/monet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 950 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
33
34
from __future__ import print_function
import os
import sys
from warnings import warn
try:
from setuptools import setup, find_packages
except:
from distutils.core import setup
setup(
name='monet',
version='2.0',
url='https://github.com/noaa-oar-arl/MONET',
license='MIT',
author='Barry D. Baker',
author_email='[email protected]',
maintainer='Barry Baker',
maintainer_email='[email protected]',
packages=find_packages(),
keywords=[
'model', 'verification', 'hysplit', 'cmaq', 'atmosphere', 'camx',
'evaluation'
],
description='The Model and Observation Evaluation Toolkit (MONET)',
install_requires=[
'numpy', 'pandas', 'pyresample', 'netcdf4', 'xarray', 'dask',
'matplotlib', 'seaborn', 'pseudonetcdf', 'cartopy', 'future', 'sphinx',
'pandoc'
],
dependency_links=[
"git+ssh://[email protected]/barronh/pseudonetcdf.git",
])