-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1001 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
[tool.poetry]
name = "pygeodes"
version = "0.1.0"
description = "A Python client for Geodes APIs"
authors = ["CNES"]
readme = "README.md"
include=["pygeodes/data/model.json"]
license = "MIT"
repository = "https://github.com/CNES/pyGeodes"
homepage = "https://geodes.cnes.fr"
[tool.poetry.dependencies]
python = ">=3.10"
tqdm = "^4.66.4"
remotezip = "^0.12.3"
validators = "^0.28.3"
pystac = "1.8.0"
pandas = "^2.2"
requests = "^2.32.3"
aiohttp = "^3.9.5"
boto3 = "^1.34.142"
geopandas = "^1.0"
aiofiles = "^24.1.0"
ipython = "8.12.3"
folium = "^0.17.0"
rich = "^13.7.1"
whoosh = "^2.7.4"
[tool.poetry.group.dev.dependencies]
sphinx = "7.1.0"
numpydoc = "^1.7.0"
sphinx-copybutton = "^0.5.2"
pydata-sphinx-theme = "0.14.4"
black = "^24.4.2"
toml = "^0.10.2"
flake8 = "5.0.4"
nbsphinx = "^0.9.4"
jupyter = "^1.0.0"
pandoc = "^2.3"
jupyter-sphinx = "^0.5.3"
[tool.poetry.scripts]
pygeodes = "pygeodes.cli.cli:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"