-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (57 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
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["flit_core >=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "cryoswath"
version = "0.2.1.post4"
authors = [
{ name="Jan Haacker", email="[email protected]" },
]
description = "Swath processing toolbox for CryoSat-2"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
keywords = ["glacier", "altimetry", "swath", "cryosat"]
dependencies = [
"dask",
"defusedxml",
"geopandas",
"gitpython",
"h5netcdf",
"h5py",
"matplotlib",
"numpy",
"packaging",
"pandas",
"pyarrow",
"pyogrio",
"pyproj",
"tables",
"python-dateutil",
"rasterio",
"rioxarray",
"scikit-learn",
"scipy",
"shapely",
"statsmodels",
"tqdm",
"xarray",
"zarr"
]
[project.license]
file = "LICENSE.txt"
# ... = "MIT"
[project.optional-dependencies]
doc = ["sphinx"]
notebooks = ["ipykernel"]
[project.urls]
Homepage = "https://github.com/j-haacker/cryoswath"
Issues = "https://github.com/j-haacker/cryoswath/issues"
Repository = "https://github.com/j-haacker/cryoswath.git"
Documentation = "https://j-haacker.github.io/cryoswath"
[project.scripts]
cryoswath-init = "cryoswath.misc:init_project"