forked from pmlmodelling/pyfvcom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (19 loc) · 912 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
version = '2.2.0'
setup(
name='PyFVCOM',
packages=['PyFVCOM', 'PyFVCOM.ctd', 'PyFVCOM.grid', 'PyFVCOM.utilities'],
version=version,
description=("PyFVCOM is a collection of various tools which can be used to generate inputs files and interact "
"with FVCOM outputs."),
author='Pierre Cazenave',
author_email='[email protected]',
url='https://gitlab.ecosystem-modelling.pml.ac.uk/fvcom/PyFVCOM',
download_url='http://gitlab.em.pml.ac.uk/fvcom/PyFVCOM/repository/archive.tar.gz?ref={}'.format(version),
keywords=['fvcom', 'unstructured grid', 'mesh'],
license='MIT',
platforms='any',
install_requires=['jdcal', 'lxml', 'matplotlib', 'netCDF4', 'networkx', 'numpy>=1.13.0', 'pandas', 'xlsxwriter',
'pyproj', 'pytz', 'scipy', 'pyshp', 'UTide', 'shapely', 'descartes', 'cartopy'],
classifiers=[]
)