-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (80 loc) · 2.5 KB
/
pyproject.toml
File metadata and controls
91 lines (80 loc) · 2.5 KB
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
[build-system]
requires = ["scikit-build-core", "nanobind>=2.9.2"]
build-backend = "scikit_build_core.build"
[project]
name = "SHARPlib"
dynamic = ["version"]
description = "Sounding and Hodograph Analysis and Research Program Library (SHARPlib) for processing vertical profiles of meteorological/atmospheric sounding data."
readme = "README.md"
authors = [
{ name = "Kelton Halbert", email = "kelton.halbert@noaa.gov" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
]
keywords = [
"meteorology",
"weather",
"atmospheric science",
"atmosphere",
"soundings",
"skewt",
"hodograph"
]
requires-python = ">=3.10"
dependencies = [
"numpy>=2.0.0"
]
[project.optional-dependencies]
test = [
"pytest",
"pandas",
"fastparquet"
]
[project.urls]
"homepage" = "https://github.com/keltonhalbert/SHARPlib"
"Documentation" = "https://keltonhalbert.github.io/SHARPlib"
"Bluesky" = "https://bsky.app/profile/stormscale.io"
[tool.scikit-build]
cmake.version = ">=3.15"
cmake.build-type = "Release"
build-dir = "build/{wheel_tag}"
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = [
"src/nanobind/_version.py",
"src/nanobind/nwsspc/**",
"external/**",
]
[tool.scikit-build.cmake.define]
BUILD_PYBIND = true
[tool.setuptools_scm] # Section required
version_file = "src/nanobind/_version.py"
[tool.pytest.ini_options]
testpaths = ["tests/python"]
[tool.cibuildwheel]
build-verbosity = 1
before-build = "git reset --hard HEAD && git clean -fdx -e wheelhouse"
archs = ["auto64"]
skip = ["pp*", "*i686", "*win32", "*musllinux*"]
enable = []
manylinux-x86_64-image = "manylinux_2_28"
manylinux-aarch64-image = "manylinux_2_28"
test-command = "pytest {project}/tests/python"
test-requires = ["pytest", "pandas", "fastparquet"]
test-environment = { SETUPTOOLS_SCM_PRETEND_VERSION="" }
[tool.pyright]
reportMissingModuleSource = "none"
reportUnknownVariableType = false
reportUnknownMemberType = "none"
[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "10.14"