forked from gjoseph92/stackstac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
101 lines (97 loc) · 2.75 KB
/
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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[tool.poetry]
authors = ["Gabe Joseph <[email protected]>"]
description = "Load a STAC collection into xarray with dask"
homepage = "https://stackstac.readthedocs.io/en/latest/index.html"
license = "MIT"
name = "stackstac"
readme = "README.md"
repository = "https://github.com/gjoseph92/stackstac"
version = "0.2.1"
[tool.poetry.dependencies]
Bottleneck = {version = "^1.3.2", optional = true}
Pillow = {version = "^8.1.2", optional = true}
Sphinx = {version = "^3.5.4", optional = true}
aiohttp = {version = "^3.7.4", optional = true}
cachetools = {version = "^4.2.2", optional = true}
coiled = {version = "^0", optional = true}
dask = {extras = ["array"], version = "^2021.4.1"}
dask-labextension = {version = "^5.0.1", optional = true}
distributed = {version = "^2021.4.1", optional = true}
furo = {version = "^2021.4.11-beta.34", optional = true}
geogif = {version = "^0", optional = true}
ipyleaflet = {version = "^0.13.6", optional = true}
ipython = {version = "^7.20.0", optional = true}
ipywidgets = {version = "^7.6.3", optional = true}
jupyter-sphinx = {version = "^0.3.2", optional = true}
jupyterlab-geojson = {version = "^3.1.2", optional = true}
jupyterlab-system-monitor = {version = "^0.8.0", optional = true}
matplotlib = {version = "^3.4.1", optional = true}
mercantile = {version = "^1.1.6", optional = true}
nbsphinx = {version = "^0.8.2", optional = true}
numpy = "^1.20.0"
numpydoc = {version = "^1.1.0", optional = true}
pandoc = {version = "^1.0.2", optional = true}
planetary-computer = {version = "^0", optional = true}
pyproj = "^3.0.0"
pystac-client = {version = "^0", optional = true}
python = "^3.8"
rasterio = "^1.2.3"
sat-search = {version = "^0.3.0", optional = true}
scipy = "^1.6.1"
sphinx-autodoc-typehints = {version = "^1.11.1", optional = true}
xarray = ">=0.18,<1"
[tool.poetry.dev-dependencies]
Pympler = "^0.9"
aiotools = "^1.2.1"
awkward = {version = "^1.1.2", allow-prereleases = true}
black = "^21.4b2"
debugpy = "^1.2.1"
filprofiler = "^0.17.0"
flake8 = "^3.9.1"
graphviz = "^0.16"
jupyterlab = "^3.0.14"
keyring = "^23.0.1"
py-spy = "^0.3.4"
pystac = "^0"
snakeviz = "^2.1.0"
sphinx-autobuild = "^2021.3.14"
twine = "^3.4.1"
[tool.poetry.extras]
binder = [
"Bottleneck",
"coiled",
"dask-labextension",
"distributed",
"geogif",
"ipyleaflet",
"ipywidets",
"jupyterlab-geojson",
"jupyterlab-system-monitor",
"matplotlib",
"planetary-computer",
"pystac-client",
"sat-search",
]
docs = [
"furo",
"ipyleaflet",
"ipython",
"jupyter-sphinx",
"nbsphinx",
"numpydoc",
"pandoc",
"sphinx-autodoc-typehints",
"Sphinx",
]
viz = [
"aiohttp",
"cachetools",
"distributed",
"ipyleaflet",
"matplotlib",
"mercantile",
"Pillow",
]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]