-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (71 loc) · 2.21 KB
/
setup.py
File metadata and controls
73 lines (71 loc) · 2.21 KB
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
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="access_cloud_based_insar@jpl.nasa.gov",
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.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.11",
install_requires=[
"asf_search>=10.0.5",
"boto3",
"dateparser",
"dem_stitcher>=2.5.8",
"geopandas",
"s1_orbits",
"jinja2",
"lxml",
"matplotlib",
"netcdf4",
"numpy",
"rasterio",
"requests",
"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",
"topsapp_config = isce2_topsapp.enumeration.config_job:main",
"gunw_slc = isce2_topsapp.__main__:gunw_slc",
"gunw_burst = isce2_topsapp.__main__:gunw_burst",
"coseis_sar = isce2_topsapp.__main__:coseis_sar",
"makeGeocube = isce2_topsapp.packaging_utils.makeGeocube:main",
"nc_packaging = isce2_topsapp.packaging_utils.nc_packaging:main",
]
},
zip_safe=False,
)