Metadata-Version: 2.4
Name: omc3-gui
Version: 1.0.1
Summary: QT Graphical User Interface wrapper of the ``omc3`` package
Project-URL: homepage, https://github.com/pylhc/omc3_gui
Project-URL: repository, https://github.com/pylhc/omc3_gui
Project-URL: documentation, https://pylhc.github.io/omc3_gui/
Project-URL: changelog, https://github.com/pylhc/omc3_gui/blob/master/CHANGELOG.md
Author-email: OMC Team <pylhc@github.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
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: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: omc3>=0.24.0
Requires-Dist: pyqtgraph
Requires-Dist: qtpy>=2.3.1
Provides-Extra: all
Requires-Dist: accwidgets[app-frame,log-console]>=3.0.11; extra == 'all'
Requires-Dist: omc3[cern]; extra == 'all'
Requires-Dist: pytest-cov>=2.9; extra == 'all'
Requires-Dist: pytest-timeout>=1.4; extra == 'all'
Requires-Dist: pytest>=7.0; extra == 'all'
Requires-Dist: sphinx-rtd-theme>=2.0; extra == 'all'
Requires-Dist: sphinx>=7.0; extra == 'all'
Provides-Extra: cern
Requires-Dist: accwidgets[app-frame,log-console]>=3.0.11; extra == 'cern'
Requires-Dist: omc3[cern]; extra == 'cern'
Provides-Extra: doc
Requires-Dist: sphinx-rtd-theme>=2.0; extra == 'doc'
Requires-Dist: sphinx>=7.0; extra == 'doc'
Provides-Extra: test
Requires-Dist: pytest-cov>=2.9; extra == 'test'
Requires-Dist: pytest-timeout>=1.4; extra == 'test'
Requires-Dist: pytest>=7.0; extra == 'test'
Description-Content-Type: text/markdown

# <img src="https://raw.githubusercontent.com/pylhc/pylhc.github.io/master/docs/assets/logos/OMC_logo.svg" height="28"> 3 - GUI

[![Tests](https://github.com/pylhc/omc3_gui/actions/workflows/coverage.yml/badge.svg?branch=master)](https://github.com/pylhc/omc3_gui/actions/workflows/coverage.yml)
[![Code Climate coverage](https://img.shields.io/codeclimate/coverage/pylhc/omc3_gui.svg?style=popout)](https://codeclimate.com/github/pylhc/omc3_gui)
[![Code Climate maintainability (percentage)](https://img.shields.io/codeclimate/maintainability-percentage/pylhc/omc3_gui.svg?style=popout)](https://codeclimate.com/github/pylhc/omc3_gui)
[![GitHub last commit](https://img.shields.io/github/last-commit/pylhc/omc3_gui.svg?style=popout)](https://github.com/pylhc/omc3_gui/)
[![GitHub release](https://img.shields.io/github/release/pylhc/omc3_gui.svg?style=popout)](https://github.com/pylhc/omc3_gui/)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8060665.svg)](https://doi.org/10.5281/zenodo.8060665)

This is the graphical user interface wrapper for ``omc3`, our python-tool package of the Optics Measurements and Corrections team (OMC) at CERN.

Most of the codes are generic and not limited to CERN accelerators, and the package can easily be used for your favorite circular accelerator.
To see how to adapt this for your machine, see our [documentation](https://pylhc.github.io/omc3_gui/), `Model` section. 
To contribute, see [our guidelines](https://pylhc.github.io/packages/development/contributing/) on the OMC website.

## Documentation

- Autogenerated docs via `Sphinx` can be found at <https://pylhc.github.io/omc3_gui/>.
- General documentation of the OMC Team is located at <https://pylhc.github.io/>.

## Installing

Installation is easily done via `pip`:

```
pip install omc3_gui
```


For development purposes, we recommend creating a new virtual environment and installing from VCS in editable mode with all extra dependencies (`cern` for packages only available in the CERN GPN, `test` for `pytest` and relevant plugins, and `doc` for packages needed to build documentation)
```bash
git clone https://github.com/pylhc/omc3_gui
pip install --editable "omc3_gui[all]"
```

Codes can then be run with either `python -m omc3_gui.SCRIPT --FLAG ARGUMENT` or calling the `.py` file directly.

## Functionality

#### Main Scripts

Main scripts to be executed lie in the [`/omc3_gui`](omc3_gui) directory. These include:
- `sbs_gui.py` GUI for Segment-by-Segment analysis.


## License

This project is licensed under the `MIT License` - see the [LICENSE](LICENSE) file for details.
