forked from umr-lops/xsarsea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 816 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
from setuptools import setup, find_packages
import glob
setup(
name='xsarsea',
package_dir={'': 'src'},
packages=find_packages('src'),
scripts=glob.glob('src/scripts/*.py'),
url='https://github.com/umr-lops/xsarsea',
use_scm_version=True,
setup_requires=['setuptools_scm'],
include_package_data=True,
install_requires=[
'numpy', # numba needs numpy<=1.21
'xarray',
'opencv-python',
'importlib-resources',
'fsspec',
'aiohttp',
'numba',
'scipy',
'pyyaml',
'typer',
'netCDF4',
'matplotlib',
'xrft'
],
license='MIT',
author='Olivier Archer',
author_email='[email protected]',
description='cmod, detrend, and others sar processing tools over ocean'
)