forked from MET-OM/metocean-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 921 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
#!/usr/bin/env python
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'version.py')).read())
setuptools.setup(
name = 'metocean-api',
description = 'metocean-api - Tool to extract time series of metocean data from hindcasts/reanalysis',
author = 'Konstantinos Christakos MET Norway & NTNU',
url = 'https://github.com/MET-OM/metocean-api',
download_url = 'https://github.com/MET-OM/metocean-api',
version = __version__,
license = 'LGPLv2.1',
install_requires = [
'matplotlib>=3.1',
'numpy>=1.17',
'pandas',
'xarray',
'dask',
'pip',
'netcdf4',
'cartopy',
],
packages = setuptools.find_packages(),
include_package_data = True,
setup_requires = ['setuptools_scm'],
tests_require = ['pytest','pytest-cov'],
scripts = []
)