-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
51 lines (44 loc) · 1.13 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
[tool.poetry]
name = "geogif"
version = "0.2"
description = "Render xarray timestacks into GIFs"
authors = ["Gabe Joseph <[email protected]>"]
readme = "README.md"
repository = "https://github.com/gjoseph92/geogif"
homepage = "https://geogif.readthedocs.io/en/latest/index.html"
[tool.poetry.dependencies]
python = "^3.8"
dask = {extras = ["delayed"], version = ">= 2021.4.1"}
numpy = "^1.20.2"
Pillow = "^10.1"
matplotlib = "^3.4.1"
xarray = ">=0.18"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^3.0.14"
ipython = "^7.23.0"
black = "^24.4.2"
flake8 = "^3.9.1"
shed = "^0.3.4"
sphinx-autobuild = "^2021.3.14"
Bottleneck = "^1.3.2"
keyring = "^23.0.1"
twine = "^3.4.1"
netcdf4 = "^1.6.5"
[tool.poetry.group.test.dependencies]
pytest = "^6.2.3"
hypothesis = "^6.10.1"
ipython = "^7.23.0"
[tool.poetry.group.docs.dependencies]
Sphinx = "^3.5.4"
numpydoc = "^1.1.0"
pandoc = "^1.0.2"
nbsphinx = "^0.8.4"
sphinx-autodoc-typehints = "^1.12.0"
coiled = "^0"
distributed = ">= 2021.4.1, < 2023"
pystac-client = "^0"
furo = "^2021.4.11-beta.34"
stackstac = "^0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"