Metadata-Version: 2.4
Name: pyteet
Version: 0.0.6
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: awsgi2
Requires-Dist: jinja2
Requires-Dist: werkzeug
Description-Content-Type: text/markdown

# pyteet

Pyteet is a lightweight [WSGI](https://wsgi.readthedocs.io/)
web application framework. It is a simple wrapper around 
[Werkzeug](https://werkzeug.palletsprojects.com/) and 
[Jinja](https://jinja.palletsprojects.com/) inspired by
[Laravel](https://laravel.com).

## Table of Contents

- [Installation](#installation)
- [Commands](#commands)
- [License](#license)

## About

## Installation

```console
python3 -m pip install pyteet
```

## Commands

View available commands

```console
python3 -m pyteet
```

Set up a new project

```console
python3 -m pyteet init
cp app.ini.example app.ini
```

Create your own commands

```console
python3 -m pyteet make command orders
```

## License

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