Metadata-Version: 2.1
Name: mkdocs-vacantplanet
Version: 0.1.12
Summary: Default mkdocs theme for VacantPlanet projects
Home-page: https://github.com/vacantplanet/mkdocs-theme
Author: ebene fünf GmbH
Author-email: vacantplanet@ebenefuenf.de
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: mkdocs>=1.3
Requires-Dist: mkdocs-macros-plugin>=0.7
Requires-Dist: pymdown-extensions>=10.3

MkDocs Vacant Planet Theme
=========================

This is a theme for MkDocs which is mainly used in [VacantPlanet](https://vacantplanet.dev) projects 

## Installation

Install the package from PyPi using `pip`:

    pip install mkdocs-vacantplanet

Add the theme to your `mkdocs.yml` file:

    theme:
        name: vacantplanet

## Development server

    mkdocs serve -w theme   

## Styles

Install Dart Sass via `npm install -g sass`. During develompment:

    sass --watch styles:theme

## Deploy to PyPi

Install `twine` if not already done. Bump version number in `setup.py`, then:

    git tag -a vX.X.X -m "Version X.X.X"
    git push origin vX.X.X
    sass --style=compressed --no-source-map styles:theme
    python setup.py bdist_wheel
    twine upload dist/*
