Metadata-Version: 2.1
Name: lxcraft
Version: 0.0.2
Summary: Create the skeleton for a python package/project
Home-page: https://github.com/joaompinto/lxcraft
Author: João Pinto
Author-email: lamego.pinto@gmail.com
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

# Pythonic Configuration Manager for Linux Systems

[![PyPi](https://img.shields.io/pypi/v/lxcraft.svg?style=flat-square)](https://pypi.python.org/pypi/lxcraft)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square)](https://github.com/ambv/black)


## How to use
```python
from lxcraft import Plan
from lxcraft.debian import APTPackages

Plan("ensure nginx is installed", [
    APTPackages(["nginx"])
]).run()
```

## How to develop

In order to develop you must use Linux or WSL with docker.

```sh
develop/docker-bash     # Enter the development docker instance
just                    # Run the tests
```
