From 38ac3eb2da8be055e77e9d5170f11897b8832c87 Mon Sep 17 00:00:00 2001 From: Soumt Nam Date: Fri, 8 Sep 2023 11:03:14 +0900 Subject: [PATCH] chore: add readme and requirements --- readme.md | 27 +++++++++++++++++++++++++++ requirements.txt | 5 +++++ 2 files changed, 32 insertions(+) create mode 100644 readme.md create mode 100644 requirements.txt diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..b166197 --- /dev/null +++ b/readme.md @@ -0,0 +1,27 @@ +# Minya +A module-based misskey bot platform on python. +Example modules (for Korean) included + +## install + +Clone this repo and install requirements. + +```bash +git clone https://git.hawawa.tech/soumt/minya-bot.git +cd minya-bot + +pip install -r requirements.txt +``` + +Copy example.env to .env and modify settings. + +```bash +cp example.env .env +vi .env +``` + +Run minya. + +```bash +python3 minya.py +``` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..0b64110 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +aiohttp~=3.8.4 +mipa~=0.3.0 +mipac~=0.5.0 +pyfiglet~=0.8.post1 +python-dotenv~=1.0.0