-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
63 lines (57 loc) · 1.81 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
[build-system]
requires = [
"Cython>=0.29.16",
"oldest-supported-numpy",
"setuptools>=61.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "grib2io"
description = "Python interface to the NCEP G2C Library for reading/writing GRIB2 files."
authors = [
{name = "Eric Engle", email = "[email protected]"},
{name = "Adam Schnapp", 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",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
dependencies = [
"numpy",
"pyproj",
]
dynamic = ["version"]
[project.optional-dependencies]
interp = ["grib2io-interp >= 1.0.0"]
xarray = ["xarray"]
[project.entry-points."xarray.backends"]
grib2io = "grib2io.xarray_backend:GribBackendEntrypoint"
[project.urls]
Documentation = "https://noaa-mdl.github.io/grib2io"
Respository = "https://github.com/NOAA-MDL/grib2io"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["grib2io", "grib2io.tables", "grib2io.utils"]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "grib2io.__config__.grib2io_version"}