-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 861 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 861 Bytes
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
[project]
name = "pywinter"
version = "2.0.8"
description = "Read and Create MPAS/WRF-WPS intermediate files"
authors = [
{ name = "Danilo A Suarez H", email = "dniloash@gmail.com" },
]
keywords = ["Python","MPAS","WRF", "WPS", "Intermediate files"]
classifiers = []
readme = "README.md"
requires-python = ">= 3.9"
dependencies = [
"numpy",
]
[project.urls]
Repository = "https://github.com/dniloash/Pywinter"
Documentation = "https://pywinter.readthedocs.io/en/latest/"
[project.optional-dependencies]
test = [
"netcdf4>=1.7.2",
]
[build-system]
requires = ["scikit-build-core", "numpy"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
cmake.version = "CMakeLists.txt"
[dependency-groups]
dev = [
"pytest>=8.3.3",
]
[tool.ruff]
target-version = "py39"
[tool.basedpyright]
pythonVersion = "3.9"
typeCheckingMode = "standard"