setup.py: remove 'scripts' which is redundant with setuptools entry points; issue #70

This commit is contained in:
Florent Xicluna 2013-02-20 22:32:04 +01:00
parent 20b49ee257
commit 3e1452d10e

View file

@ -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",