-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (49 loc) · 1.38 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
[project]
name = "grdwindinversion"
requires-python = ">= 3.9"
description = "Package to perform Wind inversion from GRD Level-1 SAR images"
readme = "README.md"
license = {text = "MIT"}
dependencies = [
"xsar",
"xsarsea",
"xarray",
"xarray-datatree",
"pyyaml",
"numpy",
"scipy",
"fsspec",
"aiohttp",
"xarray-safe-s1",
"xradarsat2",
"xarray-safe-rcm"
]
dynamic = ["version"]
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["grdwindinversion"]
[tool.setuptools_scm]
fallback_version = "999"
[tool.isort]
profile = "black"
skip_gitignore = true
float_to_top = true
default_section = "THIRDPARTY"
known_first_party = "grdwindinversion"
[project.scripts]
SAR_L1-to-L2_wind_processor = "grdwindinversion.main:processor_starting_point"