-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
60 lines (54 loc) · 1.06 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""
Setup file
"""
from setuptools import setup, find_packages
setup(
name = "TCRM",
version = '3.1.12',
packages=find_packages(),
scripts=['tcrm.py', 'tcevent.py'],
include_package_data=True,
package_data = {
'' : ['input/*'],
'tests/test_data' : ['*'],
'MSLP/' : ['*.nc']
},
install_requires = [
'numpy',
'scipy',
'matplotlib',
'basemap',
'shapely',
'nose',
'netcdf4',
'cftime',
'coverage',
'coveralls',
'pycurl',
'pyproj',
'seaborn',
'simplejson',
'sqlite',
'statsmodels',
'libgdal'
'gdal',
'configparser',
'cartopy',
'affine',
'pandas',
'tqdm',
'xarray',
'pthread-stubs',
'imageio',
'mpi4py',
'boto3',
'botocore',
'pytest',
'pytest-cov'],
# metadata:
author = "Craig Arthur",
author_email = "[email protected]",
description = "Tropical Cyclone Risk Model",
keywords = "Tropical cyclone risk hazard",
url = "https://geoscienceaustralia.github.io/tcrm",
)