Metadata-Version: 2.4
Name: meloncityapi
Version: 0.1.0
Summary: CLI tool and library for Pycord Discord bots
License: MIT
Keywords: discord,pycord,bot,cli,formatter
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# MelonCityAPI

CLI tool + library für Pycord Discord Bots.

## Installation
```
pip install meloncityapi
```

## Commands

### Neues Bot-Projekt erstellen
```
meloncityapi new "MeinBot"
```
Erstellt im aktuellen Verzeichnis:
```
MeinBot/
├── main.py
├── requirements.txt
├── .env
└── cogs/
    └── example.py
```

### Kommentare entfernen
```
meloncityapi --deletecomments bot.py
```

### Code formatieren (benötigt black)
```
pip install black
meloncityapi --format bot.py
```

### Kommentare entfernen + formatieren
```
meloncityapi --clean bot.py
```
