Metadata-Version: 2.4
Name: pyplugs
Version: 0.5.2
Summary: PyPlugs, decorator based plug-in architecture for Python
Author-email: Geir Arne Hjelle <geirarne@gmail.com>
License-Expression: MIT
Project-URL: Home, https://github.com/gahjelle/pyplugs
Keywords: plugin,decorator
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
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 :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# PyPlugs

_Decorator based plug-in architecture for Python_

[![Latest version](https://img.shields.io/pypi/v/pyplugs.svg)](https://pypi.org/project/pyplugs/)
[![Python versions](https://img.shields.io/pypi/pyversions/pyplugs.svg)](https://pypi.org/project/pyplugs/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
[![Interrogate DocStrings](https://raw.githubusercontent.com/gahjelle/pyplugs/main/docs/images/interrogate_badge.svg)](https://interrogate.readthedocs.io/)
[![CircleCI](https://circleci.com/gh/gahjelle/pyplugs.svg?style=shield)](https://circleci.com/gh/gahjelle/pyplugs)


## Installing PyPlugs

PyPlugs is available at [PyPI](https://pypi.org/project/pyplugs/). You can install it using Pip:

    $ python -m pip install pyplugs


## Using PyPlugs

...


## Installing From Source

You can always download the [latest version of PyPlugs from GitHub](https://github.com/gahjelle/pyplugs). PyPlugs uses [Flit](https://flit.readthedocs.io/) as a setup tool.

To install PyPlugs from the downloaded source, run Flit:

    $ python -m flit install --deps production

If you want to change and play with the PyPlugs source code, you should install it in editable mode:

    $ python -m flit install --symlink
