forked from NOAA-EMC/WW3-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (32 loc) · 1 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
from setuptools import setup
setup(
name='ww3tools',
version='1.2.0',
description='Python tools and utilities for WAVEWATCHIII post-processing and validation.',
authors='Ricardo M. Campos, Ali Abdolali, Matthew Masarik, Saeideh Banihashemi, Maryam Mohammadpour, Jessica Meixner',
author_email='[email protected]',
author_website='https://www.aoml.noaa.gov/people/ricardo-campos/',
credits='National Oceanic and Atmospheric Administration (NOAA) and Cooperative Institute For Marine And Atmospheric Studies (CIMAS)',
url='https://github.com/NOAA-EMC/WW3-tools',
license='LGPLv3',
packages=["ww3tools",
"ww3tools.downloadobs"],
install_requires=[
"numpy",
"scipy",
"statistics",
"matplotlib",
"cartopy",
"basemap",
"netCDF4",
"pandas",
"xarray",
"pyresample",
"salem",
"regionmask",
"geopy",
"pathlib2",
"tqdm",
"yaml",
"boto3"]
)