-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.44 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
[project]
name = "cloudnetpy_qc"
description = "Quality control routines for CloudnetPy products"
readme = "README.md"
authors = [{name = "Finnish Meteorological Institute", email = "[email protected]"}]
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dependencies = ["cfchecker", "netCDF4", "numpy", "requests", "scipy"]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"mypy",
"pytest-flakefinder",
"types-requests",
]
dev = ["pre-commit", "release-version"]
[project.urls]
Homepage = "https://github.com/actris-cloudnet/cloudnetpy-qc"
Repository = "https://github.com/actris-cloudnet/cloudnetpy-qc"
Changelog = "https://github.com/actris-cloudnet/cloudnetpy-qc/blob/main/CHANGELOG.md"
[[tool.mypy.overrides]]
module = ["cfchecker.*", "netCDF4.*", "scipy.*"]
ignore_missing_imports = true
[tool.release-version]
filename = "cloudnetpy_qc/version.py"
pattern = ["MAJOR = (?P<major>\\d+)", "MINOR = (?P<minor>\\d+)", "PATCH = (?P<patch>\\d+)"]
changelog = "CHANGELOG.md"
[tool.ruff.lint]
extend-select = ["I"]
[tool.setuptools.dynamic]
version = {attr = "cloudnetpy_qc.version.__version__"}
[tool.tomlsort]
trailing_comma_inline_array = true
sort_inline_arrays = true