From f07ae37db71c87c403457045a6e6c66db154ffa9 Mon Sep 17 00:00:00 2001 From: Shubham Sharma Date: Mon, 25 Dec 2017 22:15:24 +0530 Subject: [PATCH] Fix entrypoint command --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 020e08f..ccd916a 100644 --- a/setup.py +++ b/setup.py @@ -2,15 +2,15 @@ setup( name = 'pyfox', packages = ['pyfox'], - version = '0.21', + version = '0.22', description = 'Shell for foxtrot', author = 'Shubham Sharma', author_email = 'shubham.sha12@gmail.com', url = 'https://github.com/gabber12/pyfox', - download_url = 'https://github.com/gabber12/pyfox/archive/0.21.tar.gz', + download_url = 'https://github.com/gabber12/pyfox/archive/0.22.tar.gz', classifiers = [], entry_points = { - 'console_scripts': ['foxtrot=pyfox.commands:main'], + 'console_scripts': ['foxtrot=pyfox.commands:command'], }, install_requires=[ 'requests',