HellMBot/setup.py

17 lines
483 B
Python
Raw Normal View History

2024-06-03 16:10:34 +00:00
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="HellMBot",
version="0.2",
2024-06-03 16:10:34 +00:00
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"],
install_requires=["discord.py"],
entry_points={
"console_scripts": ["hellm = hellmbot.bot:start"]
2024-06-03 16:10:34 +00:00
}
)