Metadata-Version: 2.1
Name: minecraft_remapper
Version: 1.1.0
Summary: A Minecraft remapper for already deobfuscated forge mod source code.
Home-page: https://github.com/Nearata/minecraft-remapper
Author: Nearata
Author-email: nearata@protonmail.com
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: click ==8.0.1
Requires-Dist: colorama ==0.4.4

# Minecraft Remapper

> A Minecraft remapper for already deobfuscated source code.

## Requirements

- Python >=3.9

## Installation

```sh
pip install minecraft-remapper
```

## Usage

```sh
python -m minecraft_remapper --i <text> --o <text> --m <text>
```

### Example

```sh
python -m minecraft_remapper --i input_folder --o output_folder --m mappings_file.tsrg
```

## Parameters

- `--i`: Path to deobfuscated and decompiled mod source code.
- `--o`: Path to an existing directory where the script will save the source code remapped in a zip file named `sources.zip`.
- `--m`: Path to mappings file (`<filename>.tsrg`)

## License

Distributed under the MIT license. See [LICENSE](LICENSE) for details.

