Metadata-Version: 2.1
Name: sug
Version: 0.1.0
Summary: A generator for systemd unit files
Home-page: https://github.com/4thel00z/sug
License: GPL-3
Author: 4thel00z
Author-email: 4thel00z@gmail.com
Requires-Python: >=3.5,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: typer (>=0.4.0,<0.5.0)
Description-Content-Type: text/markdown

# sug - systemd unit generator

![sug.png](https://raw.githubusercontent.com/4thel00z/logos/master/sug.png)

## Motivation

I am on a fresh server and want to have systemd unit. It has python installed.

## Installation

```sh
pip install sug
```

Better:

```sh
pipx install sug
```

## Usage

Sug is pretty simple, you can invoke it like this:
```
Usage: sug [OPTIONS] NAME WORKING_DIR EXEC_START BIN_PATH USER GROUP
```

## Example

This is an invocation example for sug:

```sh
sug "myservice" /var/run/myservice "$(which myservice) --verbose" $(which myservice) $USER $USER 
```

