-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (42 loc) · 1.07 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
[project]
name = "l2awinddirection"
requires-python = ">= 3.8"
description = "Python library to generate Level-2A wind direction files"
readme.file = "README.md"
readme.content-type = "text/markdown"
license = {text = "MIT"}
keywords = ["SAR", "wind", "reseach", "neural-network","texture","tensorflow"]
authors = [
{name = "Robin Marquart"},
{name = "Antoine Grouazel"}
]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"xarray",
"scipy",
"netCDF4",
"importlib_resources",
'tqdm',
'pyyaml',
'matplotlib'
]
dynamic = ["version"]
[project.optional-dependencies]
prediction = ["tensorflow"]
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["l2awinddirection"]
[tool.setuptools_scm]
fallback_version = "999"
[tool.isort]
profile = "black"
skip_gitignore = true
float_to_top = true
default_section = "THIRDPARTY"
known_first_party = "l2awinddirection"
[project.scripts]
L2a-wind-dir-processor = "l2awinddirection.mainl2awinddirection:main"