-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (31 loc) · 942 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
#!/usr/bin/env python3
# ---------------------------------------------------------------------------
# NOAA Air Resources Laboratory
#
# setup.py
#
# For installation of this package.
#
# usage: python setup.py install
# ---------------------------------------------------------------------------
from setuptools import setup
from hysplitplot import meta
setup(
name="hysplitplot",
version=meta.__version__,
description="HYSPLIT Graphics",
author=meta.__author__,
author_email=meta.__email__,
packages=["hysplitplot", "hysplitplot.traj", "hysplitplot.conc",
"hysplitplot.toa", "hysplitplot.grid"],
python_requires="==3.7",
install_requires=[
"hysplitdata==0.3.*", # omit the patch level
"geopandas==0.8.1",
"cartopy==0.17.0",
"numpy==1.20.1",
"pytz==2021.1",
"timezonefinder==5.2.0",
"contextily==1.1.0",
"mercantile==1.2.1"]
)