diff --git a/README.md b/README.md index 51b7340..215c5ab 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# wulkanowy-bot +# Wulkabot Discord bot to help manage the Wulkanowy Discord server built with the [discord.py](https://github.com/Rapptz/discord.py) library @@ -20,5 +20,5 @@ Discord bot to help manage the Wulkanowy Discord server built with the - Run the bot using ``` - poetry run python -m bot + poetry run python -m wulkabot ``` diff --git a/bot/__init__.py b/bot/__init__.py deleted file mode 100644 index 4c6d1de..0000000 --- a/bot/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -import pathlib - -PATH = pathlib.Path(__file__).parent diff --git a/bot/cogs/__init__.py b/bot/cogs/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/bot/cogs/utils/__init__.py b/bot/cogs/utils/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/pyproject.toml b/pyproject.toml index d51852e..61c01e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "wulkanowy-bot" +name = "wulkabot" version = "0.1.0" description = "Discord bot to help manage the Wulkanowy Discord server" authors = ["JelNiSław "] diff --git a/wulkabot/__init__.py b/wulkabot/__init__.py new file mode 100644 index 0000000..44815b6 --- /dev/null +++ b/wulkabot/__init__.py @@ -0,0 +1,8 @@ +""" +Wulkabot +Copyright (C) 2022-present Stanisław Jelnicki +""" + +import pathlib + +PATH = pathlib.Path(__file__).parent diff --git a/bot/__main__.py b/wulkabot/__main__.py similarity index 80% rename from bot/__main__.py rename to wulkabot/__main__.py index 637a950..75254e0 100644 --- a/bot/__main__.py +++ b/wulkabot/__main__.py @@ -1,3 +1,8 @@ +""" +Wulkabot +Copyright (C) 2022-present Stanisław Jelnicki +""" + import asyncio import os diff --git a/bot/bot.py b/wulkabot/bot.py similarity index 96% rename from bot/bot.py rename to wulkabot/bot.py index 98f512a..c749265 100644 --- a/bot/bot.py +++ b/wulkabot/bot.py @@ -1,3 +1,8 @@ +""" +Wulkabot +Copyright (C) 2022-present Stanisław Jelnicki +""" + import pkgutil import types diff --git a/wulkabot/cogs/__init__.py b/wulkabot/cogs/__init__.py new file mode 100644 index 0000000..e8372e9 --- /dev/null +++ b/wulkabot/cogs/__init__.py @@ -0,0 +1,4 @@ +""" +Wulkabot +Copyright (C) 2022-present Stanisław Jelnicki +""" diff --git a/bot/cogs/development.py b/wulkabot/cogs/development.py similarity index 96% rename from bot/cogs/development.py rename to wulkabot/cogs/development.py index 1baff82..f385b52 100644 --- a/bot/cogs/development.py +++ b/wulkabot/cogs/development.py @@ -1,3 +1,8 @@ +""" +Wulkabot +Copyright (C) 2022-present Stanisław Jelnicki +""" + import discord from discord import app_commands from discord.ext import commands diff --git a/bot/cogs/faq.py b/wulkabot/cogs/faq.py similarity index 94% rename from bot/cogs/faq.py rename to wulkabot/cogs/faq.py index 08084fc..69868f9 100644 --- a/bot/cogs/faq.py +++ b/wulkabot/cogs/faq.py @@ -1,3 +1,8 @@ +""" +Wulkabot +Copyright (C) 2022-present Stanisław Jelnicki +""" + import json import discord diff --git a/wulkabot/cogs/utils/__init__.py b/wulkabot/cogs/utils/__init__.py new file mode 100644 index 0000000..e8372e9 --- /dev/null +++ b/wulkabot/cogs/utils/__init__.py @@ -0,0 +1,4 @@ +""" +Wulkabot +Copyright (C) 2022-present Stanisław Jelnicki +""" diff --git a/bot/resources/faq.json b/wulkabot/resources/faq.json similarity index 100% rename from bot/resources/faq.json rename to wulkabot/resources/faq.json