-
Notifications
You must be signed in to change notification settings - Fork 49
/
pyproject.toml
84 lines (80 loc) · 1.95 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
[project]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
authors = [
{name = "Gabe Joseph", email = "gjoseph92@gmail.com"},
]
dependencies = [
"dask[array]>=2022.1.1",
"pyproj<4.0.0,>=3.0.0",
"rasterio<2.0.0,>=1.3.0",
"xarray>=0.18",
"numpy<3,>1.23",
"pandas<3,>=2",
]
description = "Load a STAC collection into xarray with dask"
license = {text = "MIT"}
name = "stackstac"
readme = "README.md"
requires-python = ">=3.8,<4.0"
version = "0.5.1"
[project.urls]
homepage = "https://stackstac.readthedocs.io/en/latest/index.html"
repository = "https://github.com/gjoseph92/stackstac"
[project.optional-dependencies]
viz = [
"Pillow<10.0.0,>=9.0.1",
"aiohttp<4.0.0,>=3.7.4",
"distributed>=2022.1.1",
"cachetools<5.0.0,>=4.2.2",
"mercantile<2.0.0,>=1.1.6",
"scipy<2.0.0,>=1.6.1",
"ipyleaflet<1.0.0,>=0.13.6",
"ipywidgets<8.0.0,>=7.6.3",
"matplotlib>=3.4.1",
"jupyter-server-proxy>=3.2",
]
[tool.pdm.dev-dependencies]
docs-examples = [
"Bottleneck>=1.3.2",
"coiled>=0.2.50",
"geogif>=0",
"jupyterlab-geojson>=3.1.2",
"jupyterlab-system-monitor>=0.8.0",
"planetary-computer>=0.4.3",
"pystac-client>=0.3",
"dask-labextension>=5.0.1",
"jupyterlab>=3.0.14",
]
docs = [
"Sphinx<6.0.0,>=5.0.2",
"furo<2023.0.0.0,>=2022.6.21",
"ipython<8.0.0,>=7.20.0",
"jupyter-sphinx<1.0.0,>=0.4.0",
"nbsphinx<1.0.0,>=0.8.9",
"numpydoc<2.0.0,>=1.4.0",
"pandoc<3.0.0,>=2.2",
"sphinx-autodoc-typehints<2.0.0,>=1.18.3",
"sphinx-paramlinks>=0.5.4",
]
style = [
"flake8<5.0.0,>=4.0.1",
"black<23.0.0,>=22.3.0",
]
test = [
"hypothesis<7.0.0,>=6.35.0",
"pytest<7.0.0,>=6.2.5",
]
util = [
"py-spy",
"pystac>=1",
"graphviz>=0.16",
"snakeviz>=2.1.0",
"sphinx-autobuild>=2021.3.14",
"twine>=3.4.1",
"dask-pyspy>=0.4.0",
"shapely>=2.0.5",
]
[build-system]
build-backend = "pdm.pep517.api"
requires = ["pdm-pep517"]