Metadata-Version: 2.1
Name: opus-instrumenta
Version: 1
Summary: Various implementations of hooks, processors and other classes from the main magnum-opus project.
Project-URL: Homepage, https://github.com/nicc777/opus-instrumenta
Project-URL: Documentation, https://github.com/nicc777/opus-instrumenta
Project-URL: Repository, https://github.com/nicc777/opus-instrumenta
Project-URL: Issues, https://github.com/nicc777/opus-instrumenta/issues
Project-URL: Changelog, https://raw.githubusercontent.com/nicc777/opus-instrumenta/main/CHANGELOG.md
Author-email: Nico Coetzee <nicc777@gmail.com>
Maintainer-email: Nico Coetzee <nicc777@gmail.com>
License: MIT License
        
        Copyright (c) 2024 Nico Coetzee
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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
Requires-Python: >=3.8
Requires-Dist: magnum-opus
Requires-Dist: opus-adstator
Description-Content-Type: text/markdown

```text


                     o-o  o--o  o   o  o-o                      
                    o   o |   | |   | |                         
                    |   | O--o  |   |  o-o                      
                    o   o |     |   |     |                     
                     o-o  o      o-o  o--o                      
                                                                
                                                                
o-O-o o   o  o-o  o-O-o o--o  o   o o   o o--o o   o o-O-o   O  
  |   |\  | |       |   |   | |   | |\ /| |    |\  |   |    / \ 
  |   | \ |  o-o    |   O-Oo  |   | | O | O-o  | \ |   |   o---o
  |   |  \|     |   |   |  \  |   | |   | |    |  \|   |   |   |
o-O-o o   o o--o    o   o   o  o-o  o   o o--o o   o   o   o   o
```

Implementation of standard `TaskProcessor` implementations of the [magnum-opus](https://github.com/nicc777/magnum-opus) library.


# Development Quick Start

Preparing your local system for development:

```shell
python3 -m venv venv

. venv/bin/activate

pip3 install -r requirements.txt
```

Also install the latest version of [magnum-opus](https://github.com/nicc777/magnum-opus). For now, assuming you have cloned and build `opus` locally, install the `opus` library from the package in the `dist/` directory from the project directory. An example:

```shell
pip3 install $HOME/git/opus/dist/opus-1.tar.gz
```
