Metadata-Version: 2.4
Name: pvview
Version: 1.1.1
Summary: display one or more EPICS PVs in a PyDM GUI window as a table
Author-email: "Pete R. Jemian" <jemian@anl.gov>
License-Expression: LicenseRef-ANL-Open-Source-License
Project-URL: Homepage, https://github.com/BCDA-APS/pvview/
Keywords: Python,Qt5,PyDM,EPICS
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydm
Requires-Dist: PyQt5
Provides-Extra: dev
Requires-Dist: pre-commit; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Dynamic: license-file

# pvview

Display one or more EPICS PVs in a PyDM GUI window as a table.

## Example

```
pvview {sky,xxx}:{iso8601,:UPTIME} xxx:alldone adsky:cam1:Acquire &
```

![pvview image](screen.jpg)

## Install

```bash
pip install pvview
```

### Install with conda (recommended)

Use conda to create an isolated Python environment, then pip for everything else:

```bash
conda create -n pvview python=3.14 pvview
```

### Install with pip

Use conda to create an isolated Python environment, then pip for everything else:

```bash
pip install pvview
```

### Install from source (developer)

```bash
git clone https://github.com/BCDA-APS/pvview.git
cd pvview
conda create -n pvview python=3.14
conda activate pvview
pip install -e .[dev]
```
