Metadata-Version: 2.5
Name: orzmc
Version: 2.0.0
Summary: OrzMC core library: bootstrap Minecraft client/server, manage a sandboxed Java runtime and multiple game versions
Author: OrzMC
License: MIT
Keywords: cli,java,launcher,minecraft,server
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: requests>=2.31
Requires-Dist: rich>=13.7
Description-Content-Type: text/markdown

# orzmc

OrzMC core library: bootstrap Minecraft client / server, manage a sandboxed Java
runtime and multiple game versions. Framework-free, reusable, independently
published to PyPI.

```python
from orzmc import GameType, RuntimeOptions, launch_client

opts = RuntimeOptions(is_client=True, version="1.20.4", game_type="vanilla")
launch_client(opts)
```

See the [project README](../README.md) for full documentation.
