-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
44 lines (43 loc) · 1.63 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
from setuptools import setup, find_packages
setup(
name='oceanwaves',
version='1.0.0rc6',
author='Bas Hoonhout',
author_email='[email protected]',
url='http://oceanwaves.readthedocs.io/',
license='MIT',
description='A toolbox for ocean wave datasets',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
],
keywords=['ocean waves oceanwaves swan waverider wavedroid xarray'],
packages=find_packages(exclude=['docs', 'data', 'notebooks', 'tests', 'cover']),
python_requires='>=2.7, <4',
install_requires=[
'docopt',
'xarray',
'scipy',
'numpy',
],
)