Metadata-Version: 2.1
Name: plasted
Version: 0.2.2
Summary: A WSGI app maded from a PLASTER_URI environment variable.
Author-Email: Guillaume Gauvrit <guillaume@gauvr.it>
Project-URL: Homepage, https://github.com/mardiros/plasted
Project-URL: Documentation, https://github.com/mardiros/plasted/blob/main/README.md
Project-URL: Repository, https://github.com/mardiros/plasted.git
Project-URL: Issues, https://github.com/mardiros/plasted/issues
Project-URL: Changelog, https://github.com/mardiros/plasted/blob/main/CHANGELOG.md
Requires-Python: >=3.9
Requires-Dist: plaster<2,>=1.1.2
Description-Content-Type: text/markdown

# Plasted

[![Continuous Integration](https://github.com/mardiros/plasted/actions/workflows/tests.yml/badge.svg)](https://github.com/mardiros/plasted/actions/workflows/tests.yml)
[![codecov](https://codecov.io/gh/mardiros/plasted/graph/badge.svg?token=gi0lEALVAo)](https://codecov.io/gh/mardiros/plasted)


Fix the problem to run an WSGI app configured with plaster using uwsgi.

uwsgi has many loaders, but it does not support plaster, only the old paste.ini
format.

Plasted

```bash
export PLASTER_URI=file+yaml://test.yaml
uwsgi -M --workers 1 --http 127.0.0.1:8000  --module pasted:app
```
