Metadata-Version: 2.1
Name: nonebot-plugin-omb
Version: 0.1.5
Summary: ohh my bot!
License: MIT
Author: eya46
Author-email: 61458340+eya46@users.noreply.github.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: alconna
Requires-Dist: nonebot-adapter-onebot (>=2.1.0,<3.0.0)
Requires-Dist: nonebot-plugin-alconna (>=0.53.0) ; extra == "alconna"
Requires-Dist: nonebot2 (>=2.3.0,<3.0.0)
Description-Content-Type: text/markdown

<p align="center">
  <a href="https://nonebot.dev/"><img src="https://nonebot.dev/logo.png" width="200" height="200" alt="nonebot"></a>
</p>

<div align="center">

# NoneBot Plugin OMB

# Ohh My Bot!

![License](https://img.shields.io/github/license/eya46/nonebot-plugin-omb)
![Python](https://img.shields.io/badge/python-3.9+-blue.svg)
![NoneBot](https://img.shields.io/badge/nonebot-2.3.0+-red.svg)
</div>

## 作用

只响应 `SUPERUSER` 的消息!

## 安装方式

### 依赖管理

- `pip install nonebot-plugin-omb`
- `poetry add nonebot-plugin-omb`
- `pdm add nonebot-plugin-omb`

> 在 `bot.py` 中添加 `nonebot.load_plugin("nonebot_plugin_omb")`

### nb-cli

- `nb plugin install nonebot-plugin-omb`

## 配置项

### 必要配置项

```env
# 在 nonebot-plugin-alconna>=0.53.0 版本中, 推荐配置
ALCONNA_RESPONSE_SELF=True

# 记得配置 SUPERUSERS
# 仅测试下面这种配置方式
SUPERUSERS=["xxxxxx"]
```

## 依赖项

```toml
python = "^3.9"
nonebot2 = "^2.3.0"
nonebot-adapter-onebot = "^2.1.0"
nonebot-plugin-alconna = { version = ">=0.53.0", optional = true }
```

