Metadata-Version: 2.4
Name: mc-plugin-strcreator
Version: 0.1.2
Summary: A tool to scaffold Minecraft plugin structure with pom.xml and Main.java
Home-page: https://github.com/NotGamerPratham/mcplstrcreator
Author: NotGamerPratham
Author-email: contact@notgamerpratham.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# mc-plugin-str-creator

A Python CLI tool to scaffold a basic Minecraft plugin folder structure with:

- `pom.xml`
- `Main.java`
- `plugin.yml`
- `config.yml`
- `messages.yml`

Import it in:

```python
from mc_plugin_strcreator.generator import create_mc_pl_src

# Example usage
create_mc_pl_src(plugin_name="Testing", author_name="NotGamerPratham")
```
