-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
33 lines (31 loc) · 940 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
30
31
32
33
from setuptools import find_packages, setup
from pyglider._version import __version__
setup(
name='pyglider',
version=__version__,
description='Glider data to netCDF translation in python',
author='Jody Klymak',
author_email='[email protected]',
url='https://pyglider.readthedocs.io',
packages=find_packages(exclude=['tests']),
python_requires='>=3.6',
install_requires=[
'xarray',
'dask',
'netcdf4',
'gsw',
'scipy',
'bitstring',
'pooch',
'polars',
],
license='Apache',
extras_require={
'code_style': ['flake8<3.8.0,>=3.7.0', 'black', 'pre-commit==1.17.0'],
'testing': ['pytest', 'pytest-cov'],
'docs': ['pydata-sphinx-theme', 'numpydoc', 'autoapi', 'myst-parser', 'sphinx'],
},
zip_safe=True,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
)