-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 984 Bytes
/
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
[project]
name = "sarwaveifrtrainer"
requires-python = ">= 3.9"
description = "Python library to generate Level-2 WAVE Product starting from Ifremer Level-1B SAR files"
readme.file = "README.md"
readme.content-type = "text/markdown"
license = {text = "MIT"}
keywords = ["SAR", "wave", "reseach","sea-state"]
authors = [
{name = "Antoine Grouazel"}
]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
'PyYAML',
"xarray",
"numpy",
"netCDF4",
"shapely",
"xarray-datatree",
'tqdm',
"zarr",
'fsspec',
'scipy',
'aiohttp',
]
dynamic = ["version"]
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["sarwaveifrtrainer"]
[tool.setuptools_scm]
fallback_version = "999"
[tool.isort]
profile = "black"
skip_gitignore = true
float_to_top = true
default_section = "THIRDPARTY"
known_first_party = "sarwaveifrtrainer"
[project.scripts]