Metadata-Version: 2.4
Name: posty
Version: 2.1.1.post1
Summary: A static site generator
Project-URL: Source, https://github.com/nickpegg/posty
Project-URL: Documentation, https://posty.readthedocs.io
Author-email: Nick Pegg <nick@nickpegg.com>
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: awesome-slugify~=1.6
Requires-Dist: click<9,>=7
Requires-Dist: feedgen<1.1,>=0.9
Requires-Dist: jinja2~=3.1
Requires-Dist: markdown~=3.3
Requires-Dist: pytz
Requires-Dist: pyyaml
Provides-Extra: docs
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: sphinx-click; extra == 'docs'
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
Description-Content-Type: text/markdown

# Posty

[![Build Status](https://travis-ci.org/nickpegg/posty.svg?branch=release-2.0)](https://travis-ci.org/nickpegg/posty) [![Documentation Status](https://readthedocs.org/projects/posty/badge/?version=latest)](http://posty.readthedocs.io/en/latest/?badge=latest)

A simple static site generator tool. Reads in a series of posts and pages
containing YAML metadata and Markdown text, and renders them as HTML.

This is what powers [my personal website](https://nickpegg.com).

This was mostly written for fun. There are other, probably better and
definitely more full-featured static site generators out there.

## Super-Quickstart
```
$ posty init
$ vim pages/blah.yaml
$ vim posts/1970-01-01_my-post.yaml
$ posty build
# Then deploy to your web server
```

Go check out [the docs](http://posty.readthedocs.io/) for a more info.
