-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.33 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dam"
version = "1.3.3"
description = "Data Analysis Middleware: a package for spatial data handling and transformation."
authors = [
{ name = "Luca Trotter", email = "luca.trotter@cimafoundation.org" },
{ name = "Michel Isabellon"},
{ name = "Checco Avanzi"}
]
maintainers = [
{ name = "Luca Trotter", email = "luca.trotter@cimafoundation.org"}
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: ECPL License",
"Operating System :: OS Independent",
]
dependencies = [
"d3tools@git+https://github.com/c-hydro/d3tools",
"numpy~=2.3.5",
"xarray~=2025.11.0",
"astropy~=7.2.0",
"rasterio~=1.4.3",
"rioxarray~=0.20.0",
"scikit_learn~=1.6.1",
"unpackqa~=0.2.1",
"pandas~=2.3.3",
"geopandas~=1.1.1",
"dask~=2025.11.0"
]
[project.urls]
Repository = "https://github.com/c-hydro/dam"
[project.optional-dependencies]
# dependencies for creating thumbnails
thumbnails = [
"d3tools[thumbnails]@git+https://github.com/c-hydro/d3tools"
]
# dependencies for reading and writing remote data
remote-data = [
"d3tools[remote-data]@git+https://github.com/c-hydro/d3tools"
]