-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 868 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
from setuptools import setup, find_packages
setup(
name='NOMADSExplorer',
version='0.1',
packages=find_packages(include=['NOMADSExplorer', 'NOMADSExplorer.*']),
url='https://github.com/christophertubbs/NOMADSExplorer',
license='GPL 3.0',
author='Christopher Tubbs',
author_email='',
description='Library for looking through, discovering, and loading NetCDF data in the National '
'Water Model NOMADS file structure ',
install_requires=[
'certifi>=2020.6.20',
'chardet>=3.0.4',
'idna>=2.10',
'numpy>=1.19.1',
'pandas>=1.1.0',
'python-dateutil>=2.8.1',
'pytz>=2020.1',
'requests>=2.24.0',
'scipy>=1.5.2',
'six>=1.15.0',
'urllib3>=1.25.10',
'xarray>=0.16.0',
'beautifulsoup4>=4.9.1',
'lxml>=4.6.2'
]
)