-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.12 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
[project]
name = "sarwaveifrproc"
requires-python = ">= 3.9"
description = "Python library to generate Level-2 WAVE Product starting from Ifremer Level-1B or Level-1C SAR files"
readme.file = "README.md"
readme.content-type = "text/markdown"
license = {text = "MIT"}
keywords = ["SAR", "wave", "reseach","sea-state"]
authors = [
{name = "Robin Marquart"},
{name = "Antoine Grouazel"},
{name = "Quentin Febvre"}
]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"xarray",
"hydra-zen",
"netCDF4",
"pyyaml",
"scipy",
"onnxruntime"
]
dynamic = ["version"]
[project.optional-dependencies]
gpu = [ "onnxruntime-gpu" ]
joblib = [ "hydra-joblib-launcher" ]
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["sarwaveifrproc", "sarwave_config"]
[tool.setuptools_scm]
fallback_version = "999"
[tool.isort]
profile = "black"
skip_gitignore = true
float_to_top = true
default_section = "THIRDPARTY"
known_first_party = "sarwaveifrproc"
[project.scripts]
L2-wave-processor = "sarwaveifrproc.main:hydra_main"