-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (68 loc) · 1.81 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
[build-system]
requires = [
"numpy",
"pandas",
"xarray",
"rioxarray",
"pystac",
"rio-stac",
"boto3",
"botocore",
"openeo[localprocessing]",
"fsspec",
"ujson",
"rio-cogeo",
"setuptools>=61.0",
"dask"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["raster2stac"]
[project]
name = "raster2stac"
version = "SEMANTIC_VERSION"
dependencies = [
"kerchunk",
"openeo-pg-parser-networkx==2024.4.0",
"openeo-processes-dask[implementations]",
"rio-stac",
"boto3",
"netcdf4==1.6.5",
"h5netcdf",
"h5py",
"ujson",
"openeo"
]
authors = [
{ name = "Michele Claus", email = "[email protected]" },
{ name = "Lorenzo Mercurio", email = "[email protected]" },
{ name = "Rufai Omowunmi Balogun", email = "[email protected]" }
]
description = "Create valid STAC Collections, Items and Assets given already existing raster datasets"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis"
]
keywords = ["STAC", "Metadata", "Cloud-Optimized GeoTIFFs", "Kerchunk", "NetCDF"]
[project.optional-dependencies]
dev = ["isort", "ruff"]
[project.urls]
Homepage = "https://gitlab.inf.unibz.it/earth_observation_public/raster-to-stac"
Issues = "https://gitlab.inf.unibz.it/earth_observation_public/raster-to-stac/-/issues"
[tool.isort]
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"FIRSTPARTY",
"LOCALFOLDER"
]
[tool.ruff]