Metadata-Version: 2.1
Name: pymultirole-plugins
Version: 0.5.178
Summary: Sherpa multirole plugins
Home-page: https://kairntech.com/
Author: Olivier Terrier
Author-email: olivier.terrier@kairntech.com
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development
Classifier: Typing :: Typed
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Dist: pydantic==1.7.4
Requires-Dist: fastapi==0.61.2
Requires-Dist: python-singleton-metaclasses
Requires-Dist: pytest
Requires-Dist: sphinx ; extra == "docs"
Requires-Dist: sphinx-rtd-theme ; extra == "docs"
Requires-Dist: m2r2 ; extra == "docs"
Requires-Dist: sphinxcontrib.apidoc ; extra == "docs"
Requires-Dist: jupyter_sphinx ; extra == "docs"
Requires-Dist: pytest ; extra == "test"
Requires-Dist: pytest-cov ; extra == "test"
Requires-Dist: pytest-flake8 ; extra == "test"
Requires-Dist: pytest-black ; extra == "test"
Requires-Dist: flake8==3.9.2 ; extra == "test"
Requires-Dist: tox ; extra == "test"
Requires-Dist: dirty-equals ; extra == "test"
Provides-Extra: docs
Provides-Extra: test

## Requirements

- Python 3.8+
- Flit to put Python packages and modules on PyPI
- Pydantic for the data parts.

## Installation
```
pip install flit
pip install pyformatters-plugins
```

## Publish the Python Package to PyPI
- Increment the version of your package in the `__init__.py` file:
```
"""An amazing package!"""

__version__ = 'x.y.z'
```
- Publish
```
flit publish
```

