From 015d939bd5dc32ac3fd1615004bbbe5b9c00ed34 Mon Sep 17 00:00:00 2001 From: trueold89 Date: Mon, 3 Jun 2024 19:10:34 +0300 Subject: [PATCH] Init setup.py --- setup.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3b75c8e --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +from setuptools import setup + +setup( + name="HellMBot", + version="0.1", + url="https://git.orudo.ru/trueold89/HellMBot", + author="trueold89", + author_email="trueold89@orudo.ru", + description="Discord bot that will wake your friends up from full mute by putting them through 9 circles of hell", + packages=["hellmbot"], + long_description=open("README.md").read(), + install_requires=["discord.py"], + entry_points={ + "console_scripts": ["hellm = hellmbot.bot:main"] + } +)