Metadata-Version: 2.1
Name: Bolinette
Version: 0.12.0
Summary: An asynchronous Python web framework
Home-page: https://github.com/TheCaptainCat/bolinette
Author: Pierre Chat
Author-email: pierrechat@outlook.com
License: MIT
Keywords: Bolinette,Web,Framework,Async
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Bolinette

Bolinette is a Python web framework built on top of [aiohttp](https://github.com/aio-libs/aiohttp)

## Install

### Prerequisites

Bolinette requires Python 3.9. Get it from the [official sources](https://www.python.org/downloads/). Be sure to
install the pip and virtualenv extensions.

### Create your project folder

```shell script
mkdir my_project && cd my_project
```

### Install Bolinette

With a virtual environment:
```shell script
python3.9 -m venv venv && source venv/bin/activate && pip install pip --upgrade && pip install bolinette
```

Globally, with admin rights:
```shell script
pip install pip --upgrade && pip install bolinette
```

## Use the Bolinette CLI

*The CLI is work in progress.*


