-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (70 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
75 lines (70 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["flit_core >=3.11,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "cryoswath"
version = "0.2.5"
authors = [
{ name="Jan Haacker", email="j.m.haacker@tudelft.nl" },
]
description = "Swath processing toolbox for CryoSat-2"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.txt"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
keywords = ["glacier", "altimetry", "swath", "cryosat"]
dependencies = [
"Bottleneck",
"dask",
"defusedxml",
"geopandas>=1.0.1",
"gitpython",
"h5netcdf",
"h5py",
"keyring",
"matplotlib",
"numpy",
"packaging",
"pandas>=2,<3",
"pyarrow",
"pyogrio",
"pyproj",
"pystac_client",
"python-dateutil",
"rasterio",
"rioxarray",
"scikit-learn",
"scipy",
"shapely",
"stackstac",
"statsmodels",
"tables",
"tqdm",
"xarray>=2025.3,<2025.12",
"zarr"
]
[project.optional-dependencies]
dev = ["flit", "pip-tools", "ruff"]
docs = ["sphinx", "pydata-sphinx-theme"]
notebooks = ["ipykernel"]
production = ["xarray[accel]>=2025.3,<2025.12", "dask[distributed]"]
all = ["cryoswath[dev,docs,notebooks,production]"]
[project.urls]
Repository = "https://github.com/j-haacker/cryoswath.git"
Documentation = "https://cryoswath.readthedocs.io/"
Issues = "https://github.com/j-haacker/cryoswath/issues"
[project.scripts]
cryoswath-init = "cryoswath.misc:init_project"
cryoswath-download-rgi = "cryoswath.misc:download_rgi_cli"
cryoswath-update-keyring = "cryoswath.misc:update_keyring_cli"
cryoswath-update-netrc = "cryoswath.misc:update_netrc_cli"
cryoswath-update-tracks = "cryoswath.misc:update_track_database"
[tool.pytest.ini_options]
pythonpath = ["."]