forked from openearth/oceanwaves-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
18 lines (17 loc) · 417 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (17 loc) · 417 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
fromsetuptoolsimportsetup, find_packages
setup(
name='oceanwaves',
version='0.0',
author='Bas Hoonhout',
author_email='bas.hoonhout@deltares.nl',
packages=find_packages(),
description='A toolbox for ocean wave datasets',
long_description=open('README.txt').read(),
install_requires=[
'docopt',
'pyproj',
'xarray',
'scipy',
'numpy',
],
)