Metadata-Version: 2.1
Name: wordlette
Version: 0.1.0a11
Summary: Simple and easy framework for building complex websites.
License: MIT
Author: ZechCodes
Author-email: hi@zech.codes
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Provides-Extra: cms
Provides-Extra: sql
Provides-Extra: toml
Provides-Extra: yaml
Requires-Dist: bevy (>=2.0.1,<3.0.0)
Requires-Dist: jinja2 (>=3.1.2,<4.0.0) ; extra == "cms"
Requires-Dist: python-multipart (>=0.0.6,<0.0.7)
Requires-Dist: pyyaml (>=6.0.1,<7.0.0) ; extra == "yaml"
Requires-Dist: sqlalchemy (>=2.0.19,<3.0.0) ; extra == "sql"
Requires-Dist: starlette (>=0.28.0,<0.29.0)
Requires-Dist: tomlkit (>=0.11.8,<0.12.0) ; extra == "toml"
Requires-Dist: uvicorn (>=0.22.0,<0.23.0) ; extra == "cms"
Description-Content-Type: text/markdown

# Wordlette 0.1.0-alpha.11

> ⚠️ This is alpha software. It is not currently intended for production use.

Simple and easy content management system that anyone can use.

## Usage

Currently, there is only a simple setup process for the CMS. And a basic hello world landing page once it's all
configured.

To run it just follow these steps:

```bash
pip install wordlette[cms]
wordlette serve
```

That'll start a uvicorn server on [localhost:8000](HTTP://localhost:8000).

You can use the `--debug` (or `-d`) flag to enable debug mode. This currently only gives you stacktraces on error pages.

