Metadata-Version: 2.3
Name: LLNL-PyDV
Version: 3.6.1
Summary: PyDV: Python Data Visualizer
License: BSD
Author: Sarah El-Jurf
Author-email: eljurf1@llnl.gov
Maintainer: Sarah El-Jurf
Maintainer-email: eljurf1@llnl.gov
Requires-Python: >=3.6
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
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: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Dist: PyQt5
Requires-Dist: PySide2
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: scikit-learn
Requires-Dist: scipy
Project-URL: Bug Tracker, https://github.com/LLNL/PyDV/issues
Project-URL: Documentation, https://pydv.readthedocs.io/en/latest/
Project-URL: Discussions, https://github.com/LLNL/PyDV/discussions
Project-URL: Homepage, https://github.com/LLNL/PyDV
Description-Content-Type: text/markdown

# PyDV 

A 1D graphics and data analysis tool, heavily based on the ULTRA plotting tool.

## PyDV Importable Interface Module ###
You can now call most of PyDV's functionality from within a Python script. Below is an example of how to do this.

### Most Current

```
import sys
sys.path.append("/usr/gapps/pydv/current")
import pydvpy

curves = list()
curves.append(pydvpy.span(1,10,6))
pydvpy.save('myFile.txt', curves)
```

### PyPi or WEAVE Environment

```
from pydv import pydvpy

curves = list()
curves.append(pydvpy.span(1,10,6))
pydvpy.save('myFile.txt', curves)
```

# Documentation

[PyDV Users Manual](https://pydv.readthedocs.io/en/latest/) [![Documentation Status](https://readthedocs.org/projects/pydv/badge/?version=latest)](https://pydv.readthedocs.io/en/latest/?badge=latest)

# License

PyDV is distributed under the terms of the [BSD-3 License](LICENSE)

All new contributions must be made under the [BSD-3 License](LICENSE)

See [LICENSE](LICENSE) for details.

LLNL-CODE-507071

