Metadata-Version: 2.1
Name: rempy
Version: 0.0.5
Summary: Execute python scripts, modules or entire projects on a remote server.
Home-page: https://github.com/penguinmenac3/rempy
Author: Michael Fuerst
Author-email: mail@michaelfuerst.de
License: BSD
Download-URL: https://github.com/penguinmenac3/rempy/tarball/0.0.5
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Requires-Dist: entangle-python

# rempy

## Run your script on a server

A package for remote python execution.

```bash
rempy server.com -m foo.bar
```

## Run a server

Simply run your config.json. The name of the file must end on `.json` since that is how the command knows if you are executing a python file or starting a server.
```bash
rempy config.json
```

Configuration is explained in the configure a server section.

## Install

Simply install it via pip.
```bash
pip install rempy
```

If you want to install it from source use this:
```bash
pip install git+https://github.com/penguinmenac3/rempy.git
```

## Configure a server

A configuration file contains

TODO


