-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (45 loc) · 907 Bytes
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "staccontainers"
authors = [{name = "Tom Augspurger", email = "taugspurger@microsoft.com"}]
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
[project.urls]
Home = "https://github.com/TomAugspurger/staccontainers"
dependencies = [
"pystac",
"pystac-client",
"requests"
]
requires-python = ">=3.6"
[project.optional-dependencies]
complete = [
"dask-geopandas",
"dask[complete]",
"geopandas",
"pandas",
# "planetary-computer",
"stackstac",
"odc-stac",
"xarray",
]
geopandas = [
"geopandas"
]
dask = [
"dask[complete]",
"dask-geopandas"
]
xarray = [
"xarray",
"stackstac",
"odc-stack",
]
docs = [
"sphinx",
"pydata-sphinx-theme",
"myst-parser",
]