-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
79 lines (67 loc) · 2.11 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
from pathlib import Path
from setuptools import find_packages, setup
setup(
name='isce2_topsapp',
use_scm_version=True,
description='Automated ISCE2 TopsApp Processing',
long_description=(Path(__file__).parent / 'README.md').read_text(),
long_description_content_type='text/markdown',
url='https://github.com/dbekaert/DockerizedTopsApp',
author=('David Bekaert, Grace Bato, '
'Marin Govorcin, Andrew Johnston, Joe Kennedy, Charlie Marshak, '
'Simran Sangha and ARIA-JPL'),
author_email='[email protected]',
license='Apache-2.0',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.8',
install_requires=[
'asf_search>=3.0.4',
'boto3',
'dateparser',
'dem_stitcher>=2.1',
'geopandas',
'hyp3lib>=3,<4',
'jinja2',
'lxml',
'matplotlib',
'netcdf4',
'numpy',
'rasterio',
'shapely',
'tqdm',
],
extras_require={
'develop': [
'flake8',
'flake8-import-order',
'flake8-blind-except',
'flake8-builtins',
'ipykernel',
'jsonschema==3.2.0',
'notebook',
'papermill',
'pytest',
'pytest-cov',
]
},
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'isce2_topsapp = isce2_topsapp.__main__:main',
'gunw_slc = isce2_topsapp.__main__:gunw_slc',
'gunw_burst = isce2_topsapp.__main__:gunw_burst',
'makeGeocube = isce2_topsapp.packaging_utils.makeGeocube:main',
'nc_packaging = isce2_topsapp.packaging_utils.nc_packaging:main'
]
},
zip_safe=False
)