-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.08 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
[project]
name = "gedixr"
version = "0.6.0"
authors = [
{name="Marco Wolsza", email="marco.wolsza@uni-jena.de" },
]
description = "GEDI L2A/L2B -> GeoParquet & GeoDataFrame/Xarray"
keywords = ["geospatial", "earth-observation", "gedi", "lidar"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: GIS",
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.10,<3.13"
dependencies = [
"geopandas>=1.0.0",
"h5py",
"tqdm",
"geocube",
"pyarrow",
"typer",
"harmony-py",
"earthaccess",
]
[project.urls]
Source = "https://github.com/maawoo/gedixr"
Issues = "https://github.com/maawoo/gedixr/issues"
Documentation = "https://github.com/maawoo/gedixr#readme"
[project.scripts]
gedixr = "gedixr.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true