Metadata-Version: 2.4
Name: ModuBotDiscord
Version: 0.5.1
Summary: Modular Discord bot framework built on top of ModuBotCore
Author-email: Endkind <endkind.ender@endkind.net>
Project-URL: Source, https://github.com/EnderModuBot/discord
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ModuBotCore>=0.0.3
Requires-Dist: discord.py>=2.5.2
Dynamic: license-file

# ModuBotDiscord

ModuBotDiscord is a modular Discord bot framework based on [ModuBotCore](https://github.com/EnderModuBot/core) and [discord.py](https://discordpy.readthedocs.io/). It enables easy development and extension of Discord bots through a flexible, extensible system.

## Features

- Modular command system
- Extendable with custom commands and views
- Permission and owner checks
- Simple configuration via environment variables

## Installation

The recommended way to install is via [PyPI](https://pypi.org/project/ModuBotDiscord/):

```bash
pip install ModuBotDiscord
```

If you want to start your own bot project, use the [ModuBotDiscord Template](https://github.com/EnderModuBot/discord-template):

```bash
git clone https://github.com/EnderModuBot/discord-template.git
cd discord-template
```

> **Note:**
> This repository contains only the source code of ModuBotDiscord and is not runnable as a bot itself.
> For your own projects, please use the template repository.

## Configuration

Create a `.env` file or set the environment variables:

```dotenv
DISCORD_TOKEN=your_discord_bot_token
DISCORD_OWNER_ID=your_user_id
```

## License

MIT License – see [LICENSE](LICENSE)
