Metadata-Version: 2.1
Name: llnl-pydv
Version: 3.1.15
Summary: PyDV: Python Data Visualizer
Home-page: https://github.com/LLNL/PyDV
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: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
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
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.
        
        import sys
        sys.path.append("/usr/gapps/pydv/current")
        import pydvpy as pydvif

        curves = list()
        curves.append(pydvif.span(1,10,6))
        pydvif.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

