-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
67 lines (64 loc) · 1.9 KB
/
setup.cfg
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
[metadata]
name = deafrica
author = DE Africa Team
author_email = [email protected]
description = Scripts, tools and automation for DE Africa
long_description = file: README.md
long_description_content_type = text/markdown
url =
project_urls =
classifiers =
Programming Language :: Python :: 3
[options]
include_package_data = true
zip_safe = false
setup_requires = setuptools_scm
packages = find_namespace:
python_requires = >=3.6
install_requires =
boto3
click
cdsapi
datacube
geopandas
kubernetes
requests
odc-algo
odc-cloud
odc-stac
pandas
pystac
rasterio
requests
rio_cogeo
rio_stac
rtree
ruamel.yaml
sentinelhub
setuptools-scm
urlpath
[options.entry_points]
console_scripts =
s1-gap-report = deafrica.monitoring.s1_gap_report:cli
check-dead-queue = deafrica.monitoring.check_dead_queues:cli
s2-gap-filler = deafrica.monitoring.s2_gap_filler:cli
s2-gap-report = deafrica.monitoring.s2_gap_report:cli
landsat-gap-report = deafrica.monitoring.landsat_gap_report:cli
landsat-gap-filler = deafrica.monitoring.landsat_gap_filler:cli
latency-check = deafrica.monitoring.latency_check:cli
download-chirps = deafrica.data.chirps:cli_monthly
download-chirps-daily = deafrica.data.chirps:cli_daily
download-gmw = deafrica.data.gmw:cli
create-mosaic = deafrica.data.create_mosaic:cli
download-alos-palsar = deafrica.data.alos_palsar:cli
download-alos-palsar-dump-tiles = deafrica.data.alos_palsar:dump_tiles
download-cop-gls = deafrica.data.copernicus_gls:cli
download-cop-cci = deafrica.data.copernicus_cci:cli
delete-sandbox-volumes = deafrica.platform.sandbox_volume_cleanup:cli
warn-unused-sandbox-volumes = deafrica.platform.warn_unused_sandbox_volumes:cli
download-wsf = deafrica.data.wsf:cli
[options.packages.find]
include =
deafrica*
exclude =
deafrica.tests*