forked from c-proof/pyglider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 663 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 663 Bytes
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
import re
from setuptools import setup, find_packages
# Get the version from versioneer
__version__ = "0.0"
setup(name="pyglider",
version=__version__,
description="Glider processing toolbox in python",
author="jklymak",
author_email="jklymak@gmail.com",
url="https://github.com/jklymak/pyglider.git",
packages=find_packages(exclude=['tests']),
python_requires='>=3.6',
install_requires=[
"matplotlib",
"numpy",
"xarray",
"dask",
"bitstring",
"netcdf4",
"geojson",
"seawater",
"scipy",
],
zip_safe=True
)