Metadata-Version: 2.4
Name: pyteet
Version: 0.0.26
Summary: Pyteet is a lightweight WSGI web application framework.
Project-URL: Documentation, https://github.com/nathanwinther/pyteet#readme
Project-URL: Issues, https://github.com/nathanwinther/pyteet/issues
Project-URL: Source, https://github.com/nathanwinther/pyteet
Author-email: Nathan Winther <nathanwinther@fastmail.fm>
License-Expression: MIT
License-File: LICENSE.txt
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
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
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.8
Requires-Dist: email-validator
Requires-Dist: python-json-logger
Requires-Dist: werkzeug
Description-Content-Type: text/markdown

# Pyteet

A petite [WSGI](https://wsgi.readthedocs.io/)
web application framework. 
A simple wrapper around 
[Werkzeug](https://werkzeug.palletsprojects.com/)
Inspired by
[Laravel](https://laravel.com).

## Table of Contents

- [Instal](#instal)
- [Optional Requirements](#optional-requirements)
- [Dev Server](#dev-server)
- [License](#license)

## Instal

```console
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install pyteet
python3 -m pyteet init
```

## Optional Requirements

If you want to use `Model` with `mysql` or `postgresql`, add the following:

```console
python3 -m pip install -r mysql-connector-python
python3 -m pip install -r psycopg[binary]
```

## Dev Server

Run development server

```console
python3 -m app
```

## License

`pyteet` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
