forked from umr-lops/xsar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (45 loc) · 1.14 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
import glob
setup(
name='xsar',
package_dir={'': 'src'},
packages=find_packages('src'),
scripts=glob.glob('src/scripts/*.py'),
url='https://github.com/umr-lops/xsar',
use_scm_version=True,
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
include_package_data=True,
install_requires=[
'GDAL',
'dask[array]',
'dask[distributed]',
'xarray',
'affine',
'rasterio',
'cartopy',
'fiona',
'pyproj',
'jinja2<=3.0.3',
'lxml',
'numpy',
'scipy',
'shapely',
'jmespath',
'geopandas',
'more_itertools',
'importlib-resources',
'pyyaml',
'fsspec',
'aiohttp',
'pytz',
'psutil',
'requests'
],
entry_points={
"xarray.backends": ["xsar=xsar.xarray_backends:XsarXarrayBackend"]
},
license='MIT',
author='Olivier Archer, Alexandre Levieux',
author_email='[email protected], [email protected]',
description='xarray/dask distributed L1 sar file reader'
)