forked from c-proof/pyglider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 850 Bytes
/
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
from setuptools import setup, find_packages
from pyglider._version import __version__
setup(name="pyglider",
version=__version__,
description="Glider data to netCDF translation in python",
author="Jody Klymak",
author_email="jklymak@gmail.com",
url="https://pyglider.readthedocs.io",
packages=find_packages(exclude=['tests']),
python_requires='>=3.6',
install_requires=[
"xarray",
"dask",
"netcdf4",
"gsw",
"scipy",
"bitstring",
"pooch"
],
license='Apache',
extras_require={
"code_style": ["flake8<3.8.0,>=3.7.0", "black", "pre-commit==1.17.0"],
"testing": ["pytest"],
"docs": ["pydata-sphinx-theme", "numpydoc", "autoapi", "myst-parser",
"sphinx"]
},
zip_safe=True
)