From fd24fd69fd5db2c8e3c340230634631e50c98480 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manolo=20Mart=C3=ADnez?= Date: Tue, 9 Jun 2015 12:32:23 +0200 Subject: [PATCH] typo --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 785fc50..19cc1d0 100755 --- a/setup.py +++ b/setup.py @@ -2,14 +2,14 @@ from setuptools import setup kwargs = {'name': 'Greg', - 'version': '0.4.3.4', + 'version': '0.4.3.6', 'install_requires': ['feedparser'], 'description': 'A command-line podcast aggregator', 'author': 'Manolo Martínez', 'author_email': 'manolo@austrohungaro.com', 'url': 'https://github.com/manolomartinez/greg', 'packages': ['greg'], - 'entry_points': {'console_scripts': ['greg = greg.gregparser.main']}, + 'entry_points': {'console_scripts': ['greg = greg.gregparser:main']}, 'package_data': {'': ['data/greg.conf']}, 'license': 'GPLv3'}