Metadata-Version: 2.4
Name: levistone
Version: 0.11.4
Summary: Endstone offers a plugin API for Bedrock Dedicated Servers, supporting both Python and C++.
Author-email: Vincent Wu <magicdroidx@gmail.com>
Project-URL: Changelog, https://endstone.readthedocs.io/en/latest/changelog
Project-URL: Discussions, https://github.com/orgs/EndstoneMC/discussions
Project-URL: Documentation, https://endstone.readthedocs.io
Project-URL: Homepage, https://github.com/EndstoneMC/endstone
Project-URL: Issues, https://github.com/EndstoneMC/endstone/issues
Keywords: plugin,python,minecraft,bedrock
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Requires-Dist: asyncio
Requires-Dist: click
Requires-Dist: importlib-metadata
Requires-Dist: importlib-resources
Requires-Dist: lazy-loader
Requires-Dist: numpy
Requires-Dist: packaging
Requires-Dist: pkginfo
Requires-Dist: psutil
Requires-Dist: pyyaml
Requires-Dist: requests
Requires-Dist: rich
Requires-Dist: tomlkit
Requires-Dist: typing-extensions
Dynamic: license-file

# LeviStone

English | [中文](README.zh.md)

A runtime for running [Endstone](https://github.com/EndstoneMC/endstone) plugins on [LeviLamina](https://github.com/LiteLDev/LeviLamina)

## Installation

```bash
pip install levistone --target plugins/EndstoneRuntime
```
You can also add == after levistone to install a specific version.  
For example, to install version 0.10.5:
```bash
pip install levistone==0.10.5 --target plugins/EndstoneRuntime
```
You can find versions on [PyPI](https://pypi.org/project/levistone/#history).

Using Docker? Try [docker-levistone-server](https://github.com/LiteLDev/docker-levistone-server)

## FAQ

### Can I run Endstone native plugins?

No, LeviStone only supports plugins written in Python.

### Why are some Endstone versions not supported?

LeviLamina only supports one version from each Minecraft protocol version, while Endstone supports multiple versions.

### How do I know which version I should install?

Check the [LeviLamina supported versions](https://lamina.levimc.org/versions/) and the [Endstone release page](https://github.com/EndstoneMC/endstone/releases).
