forked from SAR-ARD/s1ard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.47 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
from setuptools import setup, find_namespace_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='S1_NRB',
setup_requires=['setuptools_scm'],
use_scm_version=True,
description="Prototype processor for the Sentinel-1 Normalised Radar Backscatter (S1 NRB) product",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/SAR-ARD/S1_NRB",
author="John Truckenbrodt, Marco Wolsza",
author_email="[email protected]",
packages=find_namespace_packages(where='.'),
include_package_data=True,
install_requires=['python-dateutil',
'gdal>=3.5.0',
'click>=7.1.0',
'lxml',
'pystac>=1.8.0',
'pyroSAR>=0.22.1',
'spatialist>=0.12.0',
'scipy',
's1etad>=0.5.3',
's1etad_tools>=0.8.1',
'pystac-client',
'numpy',
'asf_search',
'pyproj'],
extras_require={
'docs': ['sphinx', 'sphinxcontrib-bibtex', 'nbsphinx', 'sphinx_rtd_theme', 'sphinx-toolbox', 'ipython'],
},
python_requires='>=3.8',
license='MIT',
zip_safe=False,
entry_points={
'console_scripts': ['s1_nrb=S1_NRB.cli:cli']
}
)