Metadata-Version: 2.1
Name: seedhelper
Version: 0.1.3
Summary: A python library that help to find specific Minecraft structures or biomes for a given seed.
Author: Louis Pagnier
License: MIT
Keywords: minecraft,seed,biome,structure,elytra
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# Seed Helper

Seed Helper is a python library that help to find specific Minecraft structures or biomes for a given seed.
The package is currently in very early development, so currently only the get_elytras_positions function is available (in the structure module).

Example:
```py
import seedhelper.structures as sth

seed = 123456789
ships = sth.get_elytras_positions(seed, r=5000, mc_version="1.20")
for ship in ships:
    print(f"Elytra Ship found at: {ship.pos.x}, {ship.pos.z}")
```

## Installation
You can install the package using pip:
```sh
pip install seedhelper
```


## Credits
The project uses the [Cubiomes](https://github.com/Cubitect/cubiomes) C library, which help to work with Minecraft seeds.
