-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (43 loc) · 1.31 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
[tool.poetry]
name = "bilbo-packages"
version = "0.1.16"
description = "Package permettant de générer des indicateurs à partir de différentes sources de données (Google Earth Engine, ...)."
authors = ["Clément Niot <clement.niot@oeil.nc>", "Hugo Roussaffa <hugo.roussaffa@oeil.nc>"]
readme = "README.md"
license = "CC SA" # Ajoutez ici votre licence, si applicable
homepage = "https://dev.azure.com/Oeilnc/Bilbo/_git/bilbo-packages"
classifiers = ["Programming Language :: Python :: 3",]
packages = [
{ include = "oeilnc_geoindicator" },
{ include = "oeilnc_utils" },
{ include = "oeilnc_config" },
]
[tool.poetry.dependencies]
python = "^3.11.8"
earthengine-api = "*"
numpy = "1.26.4"
geemap = "*"
rasterstats = "*"
geopandas = "*"
plotly = "*"
tobler = "^0.11.2"
intake = "^2.0.1"
sqlalchemy = "^2.0.27"
dask-geopandas = "^0.3.1"
intake-geopandas = "^0.4.0"
intake-sql = "^0.4.0"
geoalchemy2 = "^0.14.4"
python-dotenv = "^1.0.1"
psycopg2 = "^2.9.9"
lz4 = "^4.3.3"
msgpack = "^1.0.8"
dask = { version = "2024.2.1", extras = ["complete"] }
h3 = "^3.7.7"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
ipykernel = "^6.29.3"
black = "^24.4.2"
poetry2setup = "^1.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"