Metadata-Version: 2.1
Name: gilbert
Version: 0.6.1
Summary: A simple, extensible static site generator.
Author-email: Curtis Maloney <curtis@tinbrain.net>
License: MIT
Project-URL: Documentation, https://gilbert.readthedocs.io/en/latest/
Project-URL: Source Code, https://github.com/funkybob/gilbert
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bareasgi-static
Requires-Dist: bareasgi
Requires-Dist: libsass
Requires-Dist: markdown
Requires-Dist: pyyaml
Requires-Dist: stencil-template
Requires-Dist: uvicorn
Requires-Dist: watchfiles
Provides-Extra: dev
Requires-Dist: coverage ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: pytest-mock ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: ruff ; extra == 'dev'
Requires-Dist: sphinx ; extra == 'dev'

# Gilbert

Another static site generator.

https://en.wikipedia.org/wiki/William_Gilbert_(astronomer)

This README contains a brief introduction to the project. Full documentation
[is available here](https://gilbert.readthedocs.io/en/latest/).

# Quick Start

Install gilbert:

    $ pip install gilbert

Create a gilbert project:

    $ gilbert --root mysite init

(You can omit `--root` if it's the current directory.)

Create page files in mysite/pages/

Render your site:

    $ gilbert --root mysite render

Have gilbert serve your site:

    $ gilbert --root mysite serve

Serve your site and re-render on changes:

    $ gilbert --root mysite serve --watch

Finally, list all loaders and plugins:

    $ gilbert --root mysite plugins


## Installation requirements

Gilbert current requires Python 3.7 or greater.
