Init setup.py

This commit is contained in:
trueold89 2024-06-03 19:10:34 +03:00
parent 9d10ffc70f
commit 015d939bd5
Signed by: trueold89
GPG Key ID: C122E85DD49E6B30
1 changed files with 17 additions and 0 deletions

17
setup.py Normal file
View File

@ -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"]
}
)