From 84ecfd5d273961f3ad31e97d30c4c25191e863dc Mon Sep 17 00:00:00 2001 From: Alexander PapaTutuWawa Date: Sat, 12 Jun 2021 21:04:07 +0200 Subject: [PATCH] fix: Fix the setup.py --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 2860cac..c91f6d2 100644 --- a/setup.py +++ b/setup.py @@ -3,10 +3,10 @@ from setuptools import setup, find_packages setup( name = 'mira', version = '0.1.0', - description = 'An XMPP bot framework', + description = 'A command-base XMPP bot framework', url = 'https://git.polynom.me/PapaTutuWawa/mira', author = 'Alexander "PapaTutuWawa"', - author_email = 'papatutuwawa@polynom.me', + author_email = 'papatutuwawa polynom.me', license = 'GPLv3', packages = find_packages(), install_requires = [ @@ -16,7 +16,7 @@ setup( zip_safe=True, entry_points={ 'console_scripts': [ - 'mira = mira.mira:main' + 'mira = mira.base:main' ] } )