-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
92 lines (81 loc) · 1.75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[project]
name = "pysonde"
dynamic = ["version"]
description = "Post-processing tool for atmospheric sounding data"
authors = [
{name = "Hauke Schulz", email = "[email protected]"},
]
dependencies = [
"cartopy",
"coverage",
"bottleneck",
"dask",
"metpy",
"netCDF4",
"numpy",
"omegaconf",
"pandas",
"pdm-backend",
"Pint",
"Pint-Pandas",
"pint-xarray",
"PyYAML",
"regex",
"tqdm",
"xarray",
"geopy",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.9",
]
[project.urls]
Homepage = "https://github.com/observingClouds/pysonde"
[project.optional-dependencies]
dev = [
"black",
"flake8",
"isort",
"mock",
"mypy",
"pre-commit",
"pylint",
"pytest",
"pytest-cov",
"pytest-lazy-fixture",
"yapf",
]
[project.scripts]
sounding_converter = "pysonde.pysonde:main"
sounding_visualize = "pysonde.make_quicklooks_rs41:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.version]
source = "scm"
[tool.pdm]
distribution = true
[tool.pdm.scripts]
post_install = "pre-commit install"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
line-length = 88
[tool.ruff.lint.mccabe]
max-complexity = 18
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88