forked from pwcazenave/PyFVCOM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 836 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (17 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
version = '2.1.3'
setup(
name='PyFVCOM',
packages=['PyFVCOM', 'PyFVCOM.ctd', 'PyFVCOM.utilities'],
version=version,
description=("PyFVCOM is a collection of various tools and utilities which can be used to extract, analyse and plot input and output files from FVCOM."),
author='Pierre Cazenave',
author_email='pica@pml.ac.uk',
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', 'pyproj', 'pytz', 'scipy', 'pyshp', 'UTide', 'shapely'],
classifiers=[]
)