-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
44 lines (40 loc) · 1.49 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
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = ['dask',
'descartes>=1.1.0',
'gsw',
'imageio',
'matplotlib',
'netcdf4',
'numpy',
'requests',
'progressbar2',
'pyshp',
'scikit-fmm',
'scipy',
'shapely>=2.0',
'xarray']
version = '1.0'
setup(name='ismip6_ocean_forcing',
version=version,
description='A python package for creating ISMIP6 ocean forcing data '
'sets.',
url='https://github.com/xylar/ismip6-ocean-forcing',
author='Xylar Asay-Davis',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
packages=find_packages(),
package_data={'ismip6_ocean_forcing': ['default.cfg']},
install_requires=install_requires,
entry_points={'console_scripts':
['ismip6_ocean_forcing = ismip6_ocean_forcing.__main__:main']})