Skip to content

Commit

Permalink
  • Loading branch information
ocefpaf committed Nov 14, 2023
1 parent d42889f commit 4aaacf5
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ requires = [
"setuptools>=61",
]

[project.readme]
text = """\
netCDF version 4 has many features not found in earlier versions of the library,
such as hierarchical groups, zlib compression, multiple unlimited dimensions,
and new data types. It is implemented on top of HDF5. This module implements
most of the new features, and can read and write netCDF files compatible with
older versions of the library. The API is modelled after Scientific.IO.NetCDF,
and should be familiar to users of that module.
"""
content-type = "text/x-rst"

[project]
name = "netcdf4"
description = "Provides an object-oriented python interface to the netCDF version 4 library"
Expand Down Expand Up @@ -40,16 +51,7 @@ classifiers = [
dynamic = [
"version",
]
[project.readme]
text = """\
netCDF version 4 has many features not found in earlier versions of the library,
such as hierarchical groups, zlib compression, multiple unlimited dimensions,
and new data types. It is implemented on top of HDF5. This module implements
most of the new features, and can read and write netCDF files compatible with
older versions of the library. The API is modelled after Scientific.IO.NetCDF,
and should be familiar to users of that module.
"""
content-type = "text/x-rst"

dependencies = [
"certifi",
"cftime",
Expand All @@ -68,7 +70,6 @@ Repository = "https://github.com/Unidata/netcdf4-python"
nc3tonc4 = "netCDF4.utils:nc3tonc4"
nc4tonc3 = "netCDF4.utils:nc4tonc3"
ncinfo = "netCDF4.utils:ncinfo"

[tool.setuptools.packages.find]
where = ["src"]

Expand Down

0 comments on commit 4aaacf5

Please sign in to comment.