-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (49 loc) · 1.53 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
[build-system]
requires = [
"oldest-supported-numpy",
"setuptools>=61.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "grib2io-interp"
description = "Interpolation component for grib2io providing a Python interface to NCEPLIBS-ip"
authors = [
{name = "Eric Engle", email = "[email protected]"},
]
requires-python = ">=3.8"
keywords = [
"weather", "data-science", "numpy", "meteorology", "weather-data", "atmospheric-science",
"grib2", "grib2-decoder", "grib2-encoder", "ncep",
]
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Science/Research",
"License :: OSI Approved",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: POSIX",
"Operating System :: MacOS",
]
dependencies = [
"numpy<2.0.0",
"grib2io"
]
dynamic = ["version"]
[project.urls]
Documentation = "https://noaa-mdl.github.io/grib2io-interp"
Respository = "https://github.com/NOAA-MDL/grib2io-interp"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["grib2io_interp"]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "grib2io_interp.__config__.grib2io_interp_version"}