Metadata-Version: 2.4
Name: donutpromotion
Version: 0.1.0
Summary: Rank and promotion helpers for Minecraft SMP donation scripts
Author: donutpromotion maintainers
License: MIT
Keywords: minecraft,smp,plugin,donation,rank,scripting
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file
Dynamic: requires-python

# donutpromotion

Rank and promotion helpers for Minecraft SMP donation scripts. Generate promo
codes, build LuckPerms rank-up commands, and manage donation tiers from Python
or the command line.

## Install

```bash
pip install donutpromotion
```

## CLI

```bash
donutpromotion tiers
donutpromotion code smp1 Steve diamond
donutpromotion promote Steve gold
```

## Library

```python
from donutpromotion import tiers, generate_promo_code, promote_command

generate_promo_code("smp1", "Steve", "diamond")   # -> DNT-DI-XXXXXXXXXX
promote_command("Steve", "gold")                   # -> lp user Steve parent set gold
```

## License

MIT
