-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (44 loc) · 1.02 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
[project]
name = "coloc_sat"
requires-python = ">= 3.9"
license = {text = "MIT"}
dependencies = [
"geopandas",
"xarray-datatree",
"xsar >=2023.8",
"numpy",
"numba",
"xarray",
"h5netcdf",
"shapely",
"fsspec",
"affine",
"pandas",
"geopandas",
"dask",
"more-itertools",
"pyyaml",
"pyproj",
"xradarsat2",
"xarray-safe-s1",
]
readme = "README.md"
dynamic = ["version"]
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["coloc_sat"]
[tool.setuptools_scm]
fallback_version = "0"
write_to = "coloc_sat/version.py"
[tool.isort]
profile = "black"
skip_gitignore = true
float_to_top = true
default_section = "THIRDPARTY"
known_first_party = "coloc_sat"
[project.scripts]
Coloc_between_product_and_mission = "coloc_sat.scripts.coloc_between_product_and_mission:main"
Coloc_2_products = "coloc_sat.scripts.coloc_2_products:main"
Coloc_from_parquet = "coloc_sat.scripts.coloc_from_parquet:main"