From f06f484b21fa2415aeb2ffcefb2cdaa5151d2e90 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Fri, 11 Jan 2013 10:09:08 -0500 Subject: [PATCH] Some changes re #59 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 411a480..e8f0e0c 100644 --- a/setup.py +++ b/setup.py @@ -15,8 +15,8 @@ else: from setuptools import setup # NOQA kwargs = { 'entry_points': { - 'distutils.commands': ['flake8 = flake8.run:Flake8Command'], - 'console_scripts': ['flake8 = flake8.run:main'] + 'distutils.commands': ['flake8 = flake8.main:Flake8Command'], + 'console_scripts': ['flake8 = flake8.main:main'] }, 'tests_require': ['nose'], 'test_suite': 'nose.collector', @@ -42,7 +42,7 @@ setup( url="http://bitbucket.org/tarek/flake8", packages=["flake8", "flake8.tests"], scripts=scripts, - requires=["flakey (>=2.0)", "pep8 (>=1.4)"], + install_requires=["flakey (==2.0)", "pep8 (>=1.4)"], long_description=README, classifiers=[ "Environment :: Console",