From 3e1452d10eb0c1f1c3c40bead1646085a1ad1588 Mon Sep 17 00:00:00 2001 From: Florent Xicluna Date: Wed, 20 Feb 2013 22:32:04 +0100 Subject: [PATCH] setup.py: remove 'scripts' which is redundant with setuptools entry points; issue #70 --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 4e162f9..c7101a3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,6 @@ from setuptools import setup from flake8 import __version__ -scripts = ["flake8/flake8"] README = open('README.rst').read() setup( @@ -17,7 +16,6 @@ setup( maintainer_email="graffatcolmingov@gmail.com", url="http://bitbucket.org/tarek/flake8", packages=["flake8", "flake8.tests"], - scripts=scripts, install_requires=[ "setuptools", "pyflakes==0.6.1",