Metadata-Version: 2.1
Name: renutil
Version: 1.17.0
Summary: A toolkit for managing Ren'Py instances via the command line
Home-page: https://github.com/kobaltcore/renutil
License: MIT
Author: CobaltCore
Author-email: cobaltcore@yandex.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: click (>=8.1.3,<9.0.0)
Requires-Dist: lxml (>=4.8.0,<5.0.0)
Requires-Dist: requests (>=2.27.1,<3.0.0)
Requires-Dist: rich (>=12.4.1,<13.0.0)
Requires-Dist: semantic-version (>=2.9.0,<3.0.0)
Requires-Dist: tqdm (>=4.64.0,<5.0.0)
Project-URL: Repository, https://github.com/kobaltcore/renutil
Description-Content-Type: text/markdown

# renUtil
[![CircleCI](https://circleci.com/gh/kobaltcore/renutil.svg?style=svg)](https://circleci.com/gh/kobaltcore/renutil)
[![Downloads](https://pepy.tech/badge/renutil)](https://pepy.tech/project/renutil)

A toolkit for managing Ren'Py instances via the command line.

renUtil can install, update, launch and remove instances of Ren'Py. The instances are completely independent from each other. It automatically sets up and configures RAPT so new instances are instantly ready to deploy to many different platforms. Best of all, renUtil automatically configures Ren'Py in such a way that you can run it headless, making it well suited for build servers and continuous integration pipelines.

## Installation
renUtil can be installed via pip:
```bash
$ pip install renutil
```

Please note that renUtil requires Python 3 and will not provide backwards compatibility for Python 2 for the foreseeable future.

## Usage
```bash
Usage: renutil [OPTIONS] COMMAND [ARGS]...

  Commands can be abbreviated by the shortest unique string.

  For example:
      clean -> c
      la -> launch
      li -> list

Options:
  -d, --debug / -nd, --no-debug  Print debug information or only regular
                                 output

  --help                         Show this message and exit.

Commands:
  cleanup    Clean temporary files of the specified Ren'Py version.
  install    Install the specified version of Ren'Py (including RAPT).
  launch     Launch the specified version of Ren'Py.
  list       List all available versions of Ren'Py.
  uninstall  Uninstall the specified Ren'Py version.
```

# Disclaimer
renUtil is a hobby project and not in any way affiliated with Ren'Py. This means that there is no way I can guarantee that it will work at all, or continue to work once it does. Commands are mostly relayed to the Ren'Py CLI, so any issues with distribution building or startup are likely the fault of Ren'Py and not mine. renUtil is not likely to break on subsequent updates of Ren'Py, but it is not guaranteed that any available version will work correctly. Use this at your own discretion.

