Metadata-Version: 2.1
Name: kart
Version: 0.5.0
Summary: A very flexible static site generator written in python
License: MIT
Author: Giacomo Caironi
Author-email: giacomo.caironi@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: feedgen (>=0.9,<0.10)
Requires-Dist: jinja2 (>=2.11,<3.0)
Requires-Dist: livereload (>=2.6,<3.0)
Requires-Dist: paka.cmark (>=2.2,<3.0)
Requires-Dist: python-frontmatter (>=0.5,<0.6)
Requires-Dist: pyyaml (>=5.1,<6.0)
Description-Content-Type: text/markdown

# Kart
A very flexible static site generator written in python

# Getting started
Install Kart with pip
```bash
pip install Kart

Build the basic strcucture
```bash
$ python -m kart init
```

In this configuration Kart will only build a basic blog with a paginated blog index and paginated tags. If you want to customize the urls of the blog you will have to modify main.py with custom python code


You can then build and serve your site with this command
```bash
python3 main.py serve
```
# Disclaimer
Kart is not yet ready to use in a real-world scenario because it is in its early stage of its life and its api can change abruptly each minor verision.

I am currently writing the [documentation](https://giacomocaironi.github.io/Kart) of kart but it is by no mean complete. If you want to know how to use Kart in the meantime you can look at the docs folder, where the documentation is held, and the the source code of [my personal site](https://giacomocaironi.github.io) which is generated using kart

# Missing features

* the feed generation can only be applied to posts for now and is not very precise

