-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
37 lines (34 loc) · 994 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
35
36
37
#!/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-stats',
description = 'metocean-stats - Tool for generation of metocean statistics',
author = 'Konstantinos Christakos MET Norway & NTNU',
url = 'https://github.com/MET-OM/metocean-stats',
download_url = 'https://github.com/MET-OM/metocean-stats',
version = __version__,
license = 'LGPLv3',
install_requires = [
'numpy>=1.17',
'xarray',
'matplotlib>=3.1',
'pandas',
'pip',
'scipy',
'windrose',
'seaborn>=0.12.2',
'pyextremes',
'cartopy',
'python-docx',
'netcdf4',
'pydap',
],
packages = setuptools.find_packages(),
include_package_data = True,
setup_requires = ['setuptools_scm'],
tests_require = ['pytest'],
scripts = []
)