-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
17 lines (16 loc) · 845 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
setup(
name = 'StraitFlux',
packages = ['StraitFlux'],
version = '1.1.0',
install_requires=['xarray', 'netcdf4', 'xesmf', 'xmip', 'tqdm', 'matplotlib', 'dask'], #external packages as dependencies
python_requires=">=3.10",
description = 'StraitFlux',
long_description = 'StraitFlux - calculates oceanic transports and crosssections on different model grids.',
author = 'Susanna Winkelbauer',
author_email = '[email protected]',
url = 'https://github.com/susannawinkelbauer/StraitFlux',
download_url = 'https://github.com/susannawinkelbauer/StraitFlux/archive/refs/tags/v1.1.0.tar.gz',
keywords = ['python', 'oceanic transports','curvilinear grids'],
classifiers = ["Intended Audience :: Science/Research", "Programming Language :: Python :: 3",],
)