Skip to content

Commit

Permalink
Merge pull request #4 from NU-CUCIS/test-pip-install
Browse files Browse the repository at this point in the history
Fixed buid distribution (wheels) and upgraded version
  • Loading branch information
Jonathanlyj authored Sep 10, 2023
2 parents cf74c3c + 0e843bb commit b5e0221
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
47 changes: 47 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,50 @@ requires = [
"mpi4py>=3.1.4",
"packaging>=23.1"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "pncpy"
description = "Provides an object-oriented python interface to the PnetCDF library"

requires-python = ">=3.9"
keywords = [
"numpy", "netcdf", "data", "science", "network", "oceanography",
"meteorology", "climate",
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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 :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Compression",
"Operating System :: OS Independent",
]
dependencies = [
"Cython",
"numpy",
"mpi4py"
]
dynamic = [
"version"
]

[project.readme]
text = """\
PnetCDF-python is a Python interface to PnetCDF, a high-performance parallel I/O
library for accessing netCDF files. This integration with Python allows for easy
manipulation, analysis, and visualization of netCDF data using the rich ecosystem
of Python's scientific computing libraries, making it a valuable tool for python-based
applications that require high-performance access to netCDF files.
"""
content-type = "text/markdown"


2 changes: 1 addition & 1 deletion src/pncpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# init for pncpy. package
# Docstring comes from extension module _PnetCDF.
__version__ = "0.0.2"
__version__ = "0.0.3"
from ._File import *
from ._Dimension import *
from ._Variable import *
Expand Down

0 comments on commit b5e0221

Please sign in to comment.