forked from OpenDrift/opendrift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.1 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
#!/usr/bin/env python
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'opendrift/version.py')).read())
setuptools.setup(
name = 'OpenDrift',
description = 'OpenDrift - a framework for ocean trajectory modeling',
author = 'Knut-Frode Dagestad / MET Norway',
url = 'https://github.com/OpenDrift/opendrift',
download_url = 'https://github.com/OpenDrift/opendrift',
version = __version__,
license = 'GPLv2',
install_requires = [
'numpy',
'scipy',
'matplotlib',
'netCDF4',
'pyproj',
'cartopy',
],
packages = setuptools.find_packages(),
include_package_data = True,
setup_requires = ['setuptools_scm'],
tests_require = ['pytest'],
scripts = ['opendrift/scripts/hodograph.py',
'opendrift/scripts/readerinfo.py',
'opendrift/scripts/opendrift_plot.py',
'opendrift/scripts/opendrift_animate.py',
'opendrift/scripts/opendrift_gui.py',
'opendrift/scripts/mp4_to_gif.bash']
)