Metadata-Version: 2.1
Name: nexusformat
Version: 1.0.6
Summary: Python API to access NeXus data
Home-page: https://nexpy.github.io/nexpy/
Download-URL: https://github.com/nexpy/nexusformat
Author: Raymond Osborn
Author-email: rayosborn@mac.com
License: Modified BSD License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: COPYING
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: h5py>=2.9
Requires-Dist: hdf5plugin
Provides-Extra: testing
Requires-Dist: pytest; extra == "testing"

Introduction
============
This package provides a Python API to open, create, and manipulate [NeXus 
data](http://www.nexusformat.org/) written in the HDF5 format. The 
'nexusformat' package provides the underlying API for 
[NeXpy](http://nexpy.github.io/nexpy), which provides a GUI interface for
visualizing and analyzing NeXus data. 

The latest development version is always available from [NeXpy's GitHub
repository](https://github.com/nexpy/nexusformat).

Installing and Running
======================
Released versions of `nexusformat` can be installed using either

```
    $ pip install nexusformat
```

or, if you are in a conda environment::

```
    $ conda install -c conda-forge nexusformat
```

The source code can be downloaded from the NeXpy Git repository:

```
    $ git clone http://github.com/nexpy/nexusformat.git
```
Prerequisites
=============
The following libraries are used by the full installation of NeXpy. There is 
more details of the nature of these dependencies in the 
[NeXpy documentation](http://nexpy.github.io/nexpy).

* h5py                 http://www.h5py.org
* numpy                http://numpy.org
* scipy                http://scipy.org

User Support
============
Consult the [NeXpy documentation](http://nexpy.github.io/nexpy) for details 
of both the Python command-line API and how to use the NeXpy GUI. If you have 
any general questions concerning the use of NeXpy, please address 
them to the 
[NeXus Mailing List](http://download.nexusformat.org/doc/html/mailinglist.html). 
If you discover any bugs, please submit a 
[Github issue](https://github.com/nexpy/nexusformat/issues), preferably with 
relevant tracebacks.
